Skip to main content
ICT
Lesson AB31 - Stacks and Queues
 
Main   Previous Next
 

C. Queues page 5 of 10

  1. A queue is a linear data structure that is similar to waiting in line. A queue has both a front and an end.

  2. Data must always enter the queue at the end and leave from the front of the line. This type of action can be summarized as FIFO ('First-In, First-Out').

  3. A queue is the appropriate data structure when simulating waiting in line. A printer that is part of a multi-user network usually processes print commands on a FIFO basis. A queue would be used to maintain the order of the print jobs.

 

Main   Previous Next
Contact
 © ICT 2006, All Rights Reserved.