Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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