About 785,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 coupled with access …

  3. QUEUE | English meaning - Cambridge Dictionary

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

  4. queue noun - Definition, pictures, pronunciation and usage notes ...

    Definition of queue noun in Oxford Advanced Learner's Dictionary. Meaning, pronunciation, picture, example sentences, grammar, usage notes, synonyms and more.

  5. 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" (FIFO), where the …

  6. QUEUE Definition & Meaning | Dictionary.com

    QUEUE definition: a braid of hair worn hanging down behind. See examples of queue used in a sentence.

  7. queue — A synchronized queue class — Python 3.14.2 documentation

    1 day ago · The queue module implements multi-producer, multi-consumer queues. It is especially useful in threaded programming when information must be exchanged safely between multiple …

  8. 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.

  9. QUEUE definition and meaning | Collins English Dictionary

    A queue is a line of people or vehicles that are waiting for something. I watched as he got a tray and joined the queue. She waited in the bus queue. There was still a queue for tickets on the night. …

  10. Queue Data Structure and Implementation in Java, Python and C/C++

    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, C++, Java, …