...

/

Solution Review: Queue Using Stack

Solution Review: Queue Using Stack

Let’s take a detailed look at the previous challenge’s solution.

We'll cover the following...

Solution

As mentioned in the previous lesson, a typical queue has the following functions:

  • Add()
  • Remove()
  • Length()
  • IsEmpty()

We’ll take a close ...