Last updated: Apr 26, 2022

Queue

Queue is an interface available in java.util package and extended collection interface are used to hold the elements about to be processed in FIFO(First In First Out) order. Just like List, Java Queue is a collection of ordered elements but it performs insert and remove operations differently.
Abstract Queue EASY
This article discusses Abstract Queue.
Array Blocking queue EASY
This article discusses the Array Blocking queue.
ConcurrentLinkedQueue Class and its Methods EASY
In this post, With the assistance of examples, we will learn about the ConcurrentLinkedQueue class and its methods.
Linked Blocking Queue EASY
In this article, we will cover the topic of Linked Blocking Queue and its syntax and example.
Blockingqueue in Java EASY
In this article, we'll discuss the hierarchy of BlockingQueue, its declaration, implementing classes, syntax for creating objects, types, basic operations, & methods.
Linked Transfer Queue EASY
This article will discuss the Linked Transfer Queue and its syntax and implementation.
What is a Circular Queue EASY
In this article, we'll learn everything about circular queues, their operations, and applications and we will learn how they optimize various computer science processes.
Priority Blocking Queue
This article will learn about the Priority Blocking Queue and its implementation and example.
Deque
In this post, we will learn about deque(double-ended queue) in java with its examples.
Introduction to Deque its applications MEDIUM
This article demonstrates the introduction to deque and its applications.