This machine problem solution presents an implementation of the data structure stack.
The machine problem solved here is how to implement a stack using a linked list. This solution also provide visual utility functions for easier visualization of the stack.
CMSC 123, or better known as Data Structures, is a theory and programming course offered for Computer Science students in the University of the Philippines Cebu during their sophomore year. This course primarily deals with data structures (DS) and their underlying implementations and is encompassed by the following topics:
- Algorithmic Analysis
- Containers
- Memory Allocations
- List (Arrays)
- Linked List
- List/Linked-list -based DS (e.g. stack, queue, trees, graphs)
- Hash Tables
- Sorting