Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 348 Bytes

File metadata and controls

8 lines (7 loc) · 348 Bytes

Queue

  • ADT/collection in which the entities in the collection are kept in order
  • Operations on the collection are the addition of entities to the rear terminal position (Enqueue)
  • Removal of entites from front terminal position (Dequeue)
  • FIFO (First in First Out) data structure
  • Linear data structure
  • Abstractly a sequential collection