Stack
A stack is a linear data structure that follows the Last In, First Out (LIFO) principle, where elements are added and removed only from the top.
It is commonly used in algorithms like depth-first search or for tracking function calls (call stack).
Its primary operations are push
(add) and pop
(remove).
Operations
Not yet documented.