Skip to content

Latest commit

 

History

History
9 lines (4 loc) · 457 Bytes

what_is_a_queue_data_structure_.md

File metadata and controls

9 lines (4 loc) · 457 Bytes

What is a Queue Data Structure?

A queue is a linear data structure that follows the First-In-First-Out (FIFO) principle. Elements are added at the rear (enqueue operation) and removed from the front (dequeue operation). It is similar to a line at a checkout counter.

Tags: basic, JavaScript, Data Structures