About 395,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" (FIFO), where the first element added to the queue is the first one to be removed.

  2. Queue Data Structure - Online Tutorials Library

    Queue Data Structure - Learn about the Queue data structure, its types, operations, and applications in computer science. Understand how to implement queues effectively.

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

    Basic Operations of Queue. A queue is an object (an abstract data structure - ADT) that allows the following operations: Enqueue: Add an element to the end of the queue; Dequeue: Remove an element from the front of the queue; IsEmpty: Check if the queue is …

  4. Queues- Introduction and Memory Representation - CSVeda

    Sep 4, 2020 · Queue is linear data structure based on “ First In First Out” (FIFO) principle. The elements that are inserted earlier will be deleted before those elements which are added later. It is used to maintain sequence of events occurring.

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

  6. Queue - Scaler Blog

    Sep 26, 2024 · The Queue in data structure is an ordered, linear sequence of items. It is a FIFO (First In First Out) data structure, which means that we can insert an item to the rear end of the queue and remove from the front of the queue only.

  7. Queue in Data Structure Explained: Its Types & Applications

    Dec 21, 2024 · In this blog, we will cover the introduction of queue in data structure, types of queue, circular and priority queue, complexity analysis of queue, all basic operations performed in queue data structure along with their applications. What is the Queue in Data Structure ?

  8. Queue in Data Structure & Basic Operations for Queue

    Jan 25, 2025 · Guide to Queue in Data Structure. Understand how to create queue in data structure along with Basic Operations like enqueue, dequeue, peek, isfull & isnull. Learn More.

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

  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. Simple Queue (Linear Queue)

  11. Some results have been removed