Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Queue

A Queue is a linear data structure whose elements behave with one rule, First In First Out (FIFO). This means that the first element to enter the queue is the first one to go out of it. It is very similar to the Stack.

Implementations

  1. Standard Queue
  2. Priority Queue