1. Queue Introduction #

Created Wednesday 22 January 2020

In case of arrays, the problem of space wastage can be solved by the following methods:

  1. Shift all elements to the left. Very very time consuming.
  2. Use a circular system.

We use only 2 as 1 is very inefficient.