About 768,000 results
Open links in new tab
  1. QUEUE Definition & Meaning - Merriam-Webster

    The meaning of QUEUE is a waiting line especially of people or vehicles. How to use queue in a sentence. Is it que, queue, or q?

  2. Queue (abstract data type) - Wikipedia

    A queue is an example of a linear data structure, or more abstractly a sequential collection. Queues are common in computer programs, where they are implemented as data structures …

  3. QUEUE | definition in the Cambridge English Dictionary

    QUEUE meaning: 1. a line of people, usually standing or in cars, waiting for something, or a lot of people who…. Learn more.

  4. What is Queue Data Structure, its Operations, Types & Applications

    Oct 30, 2025 · A queue is a sequential data structure, like an array, but in an array, any element can be directly accessed using its index. In a queue, only the front element can be accessed …

  5. Queue - Definition, Meaning & Synonyms | Vocabulary.com

    A queue is a line of things, usually people. If you go to the store on a big sale day, there will probably be a long queue at the check-out. Queue comes from the Latin cauda, for "tail."

  6. Queue Data Structure - GeeksforGeeks

    Dec 12, 2025 · A Queue Data Structure is a fundamental concept in computer science used for storing and managing data in a specific order. It follows the principle of "First in, First out" …

  7. Queue Data Structure - Online Tutorials Library

    A queue is a linear data structure where elements are stored in the FIFO (First In First Out) principle where the first element inserted would be the first element to be accessed.

  8. DSA Queues - W3Schools

    Basic operations we can do on a queue are: Enqueue: Adds a new element to the queue. Dequeue: Removes and returns the first (front) element from the queue. Peek: Returns the …

  9. What Is a Queue? - Computer Hope

    Jun 14, 2025 · Pronounced " Q," a queue is a temporary location that stores requests unable to be fulfilled immediately. For example, a printer may receive multiple requests from different …

  10. Queue Data Structure and Implementation in Java, Python and …

    In programming terms, putting items in the queue is called enqueue, and removing items from the queue is called dequeue. We can implement the queue in any programming language like C, …