Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 470 Bytes

README.md

File metadata and controls

5 lines (3 loc) · 470 Bytes

Queues

A Queue is a lot like the Stack data structure, but the order in which you pull elements out is different. In a Queue you enqueue to put something into the Queue and you dequeue to pull something out. In other words, this is a first-in, first-out data structure, aka FIFO.

Examples of Queue Queue and Deque operations