About 212,000 results
Open links in new tab
  1. Queue Data Structure - GeeksforGeeks

    Sep 17, 2025 · Queue data structure can be classified into 3 types: 1. Simple Queue. A simple queue follows the FIFO (First In, First Out) principle. Insertion is allowed only at the rear (back). Deletion is …

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

  3. Queue in Data Structures - Types & Algorithm (With Example)

    Sep 23, 2025 · Queue is a widely used linear, non-primitive data structure that models real-world scenarios where data must be processed in the same order in which it arrives. A queue is an ordered …

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

  5. 6.11. Queues — Data Structures & Algorithms

    Oct 25, 2024 · Accountants have used queues since long before the existence of computers. They call a queue a “FIFO” list, which stands for “First-In, First-Out”. Here is a sample queue ADT. This section …

  6. Mastering Queues in Algorithm Analysis - numberanalytics.com

    Jun 14, 2025 · Learn the fundamentals of queues in algorithm analysis, including types, operations, and applications. Discover how to implement queues effectively in your code.

  7. What is Queue in Data Structure? - Intellipaat

    Oct 30, 2025 · Algorithms such as BFS (Breadth First Search) and Level Order Traversal in trees or graphs are typical examples that heavily rely on queues. Nodes are added to the queue as they’re …

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

    Nov 24, 2025 · Learn about Queue Data Structure, its types, examples, operations, and applications. Get in-depth knowledge and practical insights in this tutorial.

  9. Basic Operations for Queue Data Structure - GeeksforGeeks

    Sep 23, 2025 · Queue is a linear data structure that follows the FIFO (First In First Out) principle, where insertion is done at the rear end and deletion is done from the front end.

  10. DSA Queues - W3Schools

    Queues can be implemented by using arrays or linked lists. Queues can be used to implement job scheduling for an office printer, order processing for e-tickets, or to create algorithms for breadth-first …