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

    Apr 7, 2025 · A Deque (Double-Ended Queue) is a data structure that allows adding and removing elements from both the front and rear ends. Using a doubly linked list to implement a deque makes these operations very efficient, as each node in the list has pointers to both the previous and next nodes.

  2. 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, C++, Java, Python or C#, but the specification is pretty much the same. A queue is an object (an abstract data structure - ADT) that allows the following operations:

  3. 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 accessed. A queue is an Abstract Data Type (ADT) similar to stack, the thing that makes queue different from stack is that a queue is open at both its ends.

  4. DSA Queues - W3Schools

    A queue is a data structure that can hold many elements. Think of a queue as people standing in line in a supermarket. The first person to stand in line is also the first who can pay and leave the supermarket. This way of organizing elements is called FIFO: First In First Out. Basic operations we can do on a queue are:

  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 applications of Queue in data structures, such as task scheduling, buffering, and handling asynchronous data.

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

    Feb 20, 2025 · 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, First Out (FIFO) principle. This means that the first element added to the queue will be the first one to be removed.

  7. Introduction to Queue Data Structure with Practical Examples

    A queue is a fundamental data structure in computer science that follows the First-In-First-Out (FIFO) principle. The element that enters the queue first is the first to be removed and the element enters last is the last to be removed. Queues are flexible and have uses in different areas of computer science.

  8. Queue Data Structure With Examples (2025) By Logicmojo

    A queue is a data structure that follows the FIFO (First-In-First-Out) policy, in which whatever comes first goes out first.

    • Reviews: 8.6K
    • Queue in Data Structure & Basic Operations for Queue

      Jan 25, 2025 · Queue in data structures is a linear collection of different data types which follow a specific order while performing various operations. It can only be modified by the addition of data entities at one end or the removal of data entities at another.

    • Queue Data Structure – Complete Guide (Types, Example, …

      A queue is one of the fundamental linear data structures in computer science, widely used for storing and processing data in sequential order. Following the First In, First Out (FIFO) principle, it ensures that the first element added is the first one to be removed, making it ideal for scenarios where order is crucial.

    • Some results have been removed
    Refresh