Today, we analyze how to implement a Stack using a simple LinkedList Node data structure. To make this easy to follow, we'll simply implement the push and pop functions of a Stack.
Finally, let's support Generics by modifying our Stack class to be of parameter T. This will allow us to push and pop values out of our Stack very easily based on what we need to support.