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

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

  2. Queue Data Structure and Implementation in Java, Python and …

    Queue operations work as follows: We usually use arrays to implement queues in Java and C/++. In the case of Python, we use lists. self.k = k. self.queue = [None] * k. self.head = self.tail = -1 …

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

    What is Queue in Data Structure? A queue in data structures is a fundamental concept where elements are arranged in a sequence, and operations are performed based on the First In, …

  4. Queue Data Structure | Operations, Types & More (+Examples) // …

    From simple linear queues to more specialized forms like circular queues, priority queues, and double-ended queues (deques), each type of queue addresses specific needs related to …

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

    Jan 15, 2025 · Queue in Data Structures is a type of non-primitive, linear, and dynamic data structure. It works according to the FIFO principle. This principle is widely used in various …

  6. Queue Data Structure - Online Tutorials Library

    What is a Queue? 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 …

  7. Queue Operations in Data Structures - W3Schools

    As an ADT, a queue abstracts the data structure's implementation details, focusing on what operations are possible and how they behave. The essential operations for a queue ADT …

  8. Introduction to Queue Data Structure - GeeksforGeeks

    Mar 28, 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" …

  9. Different Types of Queues and its Applications - GeeksforGeeks

    Mar 28, 2023 · 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" …

  10. Queue Data Structure – Complete Guide (Types, Example, …

    From simple linear queues to more advanced circular and priority queues, understanding their differences is key to selecting the right one for your application. Let explain its major types. 1. …

  11. Some results have been removed
Refresh