Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 1.08 KB

File metadata and controls

49 lines (29 loc) · 1.08 KB
tags date
data-structure
array
queue
FIFO
2025-09-26

Queue

Content

========

Documentation

The queue abstract data type is defined by the following structure and operations. A queue is structured, as described above, as an ordered collection of items which are added at one end, called the “rear,” and removed from the other end, called the “front.” Queues maintain a FIFO ordering property. The queue operations are given below.


Guide & Areas of Study


Terms & Keywords


References


Notes