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

    May 17, 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. Java Program to Implement the Queue Data Structure

    May 27, 2024 · Queue is the fundamental data structure that follows the First-In-First-Out (FIFO) principle where the element that is inserted first is one that gets removed first.

  3. Queue (Java Platform SE 8 ) - Oracle Help Center

    Besides basic Collection operations, queues provide additional insertion, extraction, and inspection operations. Each of these methods exists in two forms: one throws an exception if …

  4. Queue Interface In Java - GeeksforGeeks

    Apr 18, 2025 · In Java, the Queue interface is a subtype of the Collection interface and represents a collection of elements in a specific order. It follows the first-in, first-out (FIFO) principle. This …

  5. Queue Data Structure – Definition and Java Example Code

    Mar 4, 2022 · In this article, we will talk about the queue data structure, its operations, and how to implement these operations using an array in Java. What Is a Queue? A queue is linear data …

  6. Java Program to Implement the queue data structure

    In the above example, we have used the Queue interface to implement the queue in Java. Here, we have used the LinkedList class that implements the Queue interface.

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

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

  8. Queue Data Structure Implementation in Java - Medium

    Mar 10, 2023 · In this article, we will learn read about the different operations we can perform in the queue and the different class methods of a queue in java. We will also read about the …

  9. Java Queue: From Fundamentals to Mastery - HowToDoInJava

    Aug 3, 2023 · Learn Queue data structure and the Java Queue interface and implementations with practical examples such as LinkedList, PriorityQueue and ArrayDeque.

  10. Queue Data Structure with Java

    Jan 23, 2023 · In Java, we already have an implementation of the data structure queue. It’s the interface Queue. Let’s see in practice the same example we’ve seen in the diagram above: …

Refresh