...

/

Solution Review: Stack Using Linked List

Solution Review: Stack Using Linked List

This review provides a detailed analysis of stack implementation using linked lists.

Solution

As mentioned in a previous lesson, a typical stack must contain the following functions:

  • Push(value)
  • Pop()
  • IsEmpty()
  • Peek()
  • Size()

Weā€™ll take a ...