Stacks and Generics
Fun Algorithms
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.

Comments (2)
Sharath ChandrĂ£TEST
3 years ago
Brian Voong
3 years ago
Anurag Khare
7 years ago
HELP & SUPPORT