About 33,600 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 - definition of queue by The Free Dictionary

    Define queue. queue synonyms, queue pronunciation, queue translation, English dictionary definition of queue. waiting line of people or cars: There was a long queue at the movies.

  5. Queue Data Structure - GeeksforGeeks

    Jan 20, 2026 · 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 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.

  7. std:: queue - cppreference.com

    Apr 26, 2025 · The std::queue class template is a container adaptor that gives the functionality of a queue - specifically, a FIFO (first-in, first-out) data structure. The class template acts as a wrapper to …

  8. Introduction to Azure Queue Storage - Azure Storage | Microsoft Learn

    See an introduction to Azure Queue Storage, a service for storing large numbers of messages. A Queue Storage service contains a URL format, storage account, queue, and message.

  9. 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 first element in the …

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