About 1,700,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

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

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

  4. DSA Queues - W3Schools

    Since Python lists has good support for functionality needed to implement queues, we start with creating a queue and do queue operations with just a few lines: But to explicitly create a data …

  5. Queue Data Structure: Types, Example, Operations, Full Guide

    Nov 24, 2025 · Let’s learn everything about queues, how they operate within data structures, and their practical applications. What is Queue in Data Structure? A queue in data structures is a …

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

    Oct 30, 2025 · What is Queue in Data Structure? A Queue Data Structure is a linear structure that stores elements in First In First Out (FIFO) order. It supports basic queue operations like …

  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. Queue in Data Structure: Types, Implementation, and …

    Jan 29, 2025 · In this article, I will dive deep into the concept of queue, its types, implementation, and real-world applications. By the end of this article, you will have a solid understanding of …

  9. 6.11. QueuesData Structures & Algorithms

    Oct 25, 2024 · Like the stack, the queue is a list-like structure that provides restricted access to its elements. Queue elements may only be inserted at the back (called an enqueue operation) …

  10. Queue - datastructures.org

    A queue is a linear data structure that follows the First-In, First-Out (FIFO) principle. This means the first element added is the first one to be removed.