201-Your reminder to trust the process!
source: Stacks and Queues – -
Common Terms:
Push: Nodes or items that are put into the stack are pushed
Top: This is the top of the stack.
Peek: When you peek you will view the value of the top Node in the stack. When you attempt to peek an empty stack an exception will be raised.
Here’s an example of what a stack looks like. As you can see, the topmost item is denoted as the top.
When you push something to the stack, it becomes the new top. When you pop something from the stack,
you pop the current top and set the next top as top.next.