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

    Jun 22, 2026 · The Latin word cauda or coda, meaning "tail," passed into French and in time ended up being spelled queue. English borrowed this word, giving it the meaning "a long braid of hair," one that …

  2. 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 …

  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. Cue or Queue: How to Use Them Correctly | Merriam-Webster

    Cue most often refers to a hint, or to a signal given to a performer. Queue most often refers to a succession of things, such as people waiting in a line.

  5. 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 …

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

  7. QUEUE Definition & Meaning | Dictionary.com

    Jun 23, 2011 · Explanation 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."

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

  9. Queue Introduction - GeeksforGeeks

    Jan 20, 2026 · Queue is a linear data structure that follows FIFO (First In First Out) Principle, so the first element inserted is the first to be popped out. It is an ordered list in which insertions are done at one …

  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, …