Queues : Queue « Data Structure « C Tutorial






  1. A queue is a list with insertions at one end and deletions at the other end.
  2. A queue exhibits the FIFO (first in first out) property.
14.3.Queue
14.3.1.Queues
14.3.2.Array Implementation of a Stack
14.3.3.A queue based on the linked list