About 851,000 results
Open links in new tab
  1. Queue (abstract data type) - Wikipedia

    In computer science, a queue is an abstract data type that serves as an ordered collection of entities. By convention, the end of the queue where elements are added, is called the back, …

  2. Queue Data Structure - GeeksforGeeks

    Jul 23, 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" …

  3. Queues - Ada Computer Science

    A queue is an abstract data type that holds an ordered, linear sequence of items. You can describe it as a first in, first out (FIFO) structure; the first element to be added to the queue will …

  4. Queues A Level Computer Science | OCR Revision Notes

    Jul 25, 2025 · Learn about queues for your A Level Computer Science exam. This revision note includes main operations as well as linear and circular queues.

  5. Queue Data Structure: Complete Guide (Types, Example, …

    Queue Data Structure – Complete Guide (Types, Example, Operations, Applications) A queue is one of the fundamental linear data structures in computer science, widely used for storing and …

  6. What Is Queue In Computer Science - datasciencemilan.org

    Sep 17, 2025 · In computer science, a queue is a linear data structure that maintains a collection of entities in a specific sequence, allowing modifications through the addition of entities at one …

  7. Queue Data Structure Explained: Definition and Examples

    Queue data structure is an essential concept in computer science. This article explains what queues are, how they work, and provides examples of their use in real-world applications.

  8. Queue, Deque, and Priority Queue: Key Data Structures Explained

    Dec 13, 2024 · In computer science, Queue, Deque, and Priority Queue are Abstract Data Types (ADTs) used to organize and process data. The three structures have functionalities in …

  9. 3.1. What Is a Queue? - Berea College

    A queue is an ordered collection of items where the addition of new items happens at one end, called the “rear,” and the removal of existing items occurs at the other end, commonly called …

  10. Applications of Queue Data Structure - GeeksforGeeks

    Jul 23, 2025 · A queue is a linear data structure that follows the "first-in, first-out" (FIFO) principle. It is a collection of elements that supports two primary operations - enqueue and dequeue.