Queue Interface

The Queue interface is present in java.util package and extends the Collection interface is used to hold the elements about to be processed in FIFO(First In First Out) order. It is an ordered list of objects with its use limited to inserting elements at the end of the list and deleting elements from the start of the list, (i.e.), it follows the FIFO or the First-In-First-Out principle.

Declaration

public interface Queue extends Collection  

Characteristics of Queue

  • The Queue is used to insert elements at the end of the queue and removes from the beginning of the queue. It follows FIFO concept.

  • The Java Queue supports all methods of Collection interface including insertion, deletion, etc.

  • LinkedList, ArrayBlockingQueue and PriorityQueue are the most frequently used implementations.

  • If any null operation is performed on BlockingQueues, NullPointerException is thrown.

  • The Queues which are available in java.util package are Unbounded Queues.

  • The Queues which are available in java.util.concurrent package are the Bounded Queues.

  • All Queues except the Deques supports insertion and removal at the tail and head of the queue respectively. The Deques support element insertion and removal at both ends.

Methods

MethodDescription
add(int index, element)This method is used to add an element at a particular index in the queue. When a single parameter is passed, it simply adds the element at the end of the queue.
addAll(int index, Collection collection)This method is used to add all the elements in the given collection to the queue. When a single parameter is passed, it adds all the elements of the given collection at the end of the queue.
size()This method is used to return the size of the queue.
clear()This method is used to remove all the elements in the queue. However, the reference of the queue created is still stored.
remove(int index)This method removes an element from the specified index. It shifts subsequent elements(if any) to left and decreases their indexes by 1.
remove(element)This method is used to remove and return the first occurrence of the given element in the queue.
get(int index)This method returns elements at the specified index.
set(int index, element)This method replaces elements at a given index with the new element. This function returns the element which was just replaced by a new element.
indexOf(element)This method returns the first occurrence of the given element or -1 if the element is not present in the queue.
lastIndexOf(element)This method returns the last occurrence of the given element or -1 if the element is not present in the queue.
equals(element)This method is used to compare the equality of the given element with the elements of the queue.
hashCode()This method is used to return the hashcode value of the given queue.
isEmpty()This method is used to check if the queue is empty or not. It returns true if the queue is empty, else false.
contains(element)This method is used to check if the queue contains the given element or not. It returns true if the queue contains the element.
containsAll(Collection collection)This method is used to check if the queue contains all the collection of elements.
sort(Comparator comp)This method is used to sort the elements of the queue on the basis of the given comparator.
boolean add(object)This method is used to insert the specified element into a queue and return true upon success.
boolean offer(object)This method is used to insert the specified element into the queue.

Operations on Queue

Adding Elements

In order to add an element in a queue, we can use the add() method. The insertion order is not retained in the PriorityQueue. The elements are stored based on the priority order which is ascending by default.

// Java program to add elements
// to a Queue

import java.util.*;

public class TFT {

	public static void main(String args[])
	{
		Queue<String> pq = new PriorityQueue<>();

		pq.add("Tit");
		pq.add("For");
		pq.add("Tat");

		System.out.println(pq);
	}
}

Output

[For, Tit, Tat]

Removing Elements

In order to remove an element from a queue, we can use the remove() method. If there are multiple such objects, then the first occurrence of the object is removed. Apart from that, poll() method is also used to remove the head and return it.

// Java program to remove elements
// from a Queue

import java.util.*;

public class TFT {

	public static void main(String args[])
	{
		Queue<String> pq = new PriorityQueue<>();

		pq.add("Tit");
		pq.add("For");
		pq.add("Tat");

		System.out.println("Initial Queue " + pq);

		pq.remove("Tit");

		System.out.println("After Remove " + pq);

		System.out.println("Poll Method " + pq.poll());

		System.out.println("Final Queue " + pq);
	}
}

Output

Initial Queue [For, Tit, Tat]
After Remove [For, Tat]
Poll Method For
Final Queue [Tat]

Iterating the Queue

There are multiple ways to iterate through the Queue. The most famous way is converting the queue to the array and traversing using the for loop. However, the queue also has an inbuilt iterator which can be used to iterate through the queue.

// Java program to iterate elements
// to a Queue

import java.util.*;

public class TFT {

	public static void main(String args[])
	{
		Queue<String> pq = new PriorityQueue<>();

		pq.add("Tit");
		pq.add("For");
		pq.add("Tat");

		Iterator iterator = pq.iterator();

		while (iterator.hasNext()) {
			System.out.print(iterator.next() + " ");
		}
	}
}

Output

For Tit Tat 
core java programming queue interface collections

Subscribe For More Content