Consider the class Front List that Exercise 8 describes. Implement Front List in each of the following ways:
a. Store the list's entries in an instance of Linked List .
b. Derive Front List from Linked List using public inheritance.
c. Derive Front List from Linked List using private inheritance.
Exercise 8:
Consider an ADT front list , which restricts insertions, removals, and retrievals to the first item in the list. Define and implement a class for the ADT stack that is a descendant of Front List.