Linked Lists provide a foundation for dynamic structures. Further exploring Data Structures, we find that particular manipulations of these structures enable interesting possibilities for computing. Stacks are one such iteration of these Data Structures we are exploring this semester.
An excellent exploration with Stacks would be to extend your Linked List Library with Stack Functionality (or to create a new Stack library that depends on the Linked List library).
To create a Stack library, you may want to have the following functions:
A stack can be relatively infinite (so long as available resources are present for allocation) or fixed in size.
Your stack implementation should be able to handle/recognize the following situations:
Implementing this functionality into a library will enable you to utilize it in additional projects.