Die Warteschlangendatenstruktur verwendet das FIFO-Prinzip (First In First Out). Es wird verwendet, um das zu verarbeitende Objekt in der Reihenfolge seines Eintreffens aufzubewahren. Dies ist der Schlange von Menschen, die in einer Warteschlange stehen, sehr ähnlich. Da Java umfassende Unterstützung für die Datenstruktur in Form der Collection-Schnittstelle bietet, ist die Warteschlange eine in der Collection-Schnittstelle verfügbare Schnittstelle. Es erweitert die Collection-Schnittstelle. Es ist im Java.util-Paket verfügbar und unterstützt alle in der Collection-Schnittstelle verfügbaren Vorgänge sowie einige zusätzliche Extraktions-, Einfügungs- und Inspektionsvorgänge.
Starten Sie Ihren kostenlosen Softwareentwicklungskurs
Webentwicklung, Programmiersprachen, Softwaretests und andere
Syntax:
Interface Queue<E>
Die Warteschlange ist eine Schnittstelle, keine Klasse und kann daher nicht direkt instanziiert werden. Die Deklaration zeigt, dass die Warteschlange Werte als generisch akzeptiert, ähnlich wie Sammlungen, und wir jedes Objekt an sie übergeben können. Java verfügt über mehrere Implementierungen der Queue-Schnittstelle, die wir bei der Verwendung der Queues verwenden können. Sie sind LinkedList und PriorityQueue.
Eine Warteschlange kann wie folgt deklariert werden:
Queue< Object > q = new LinkedList<>();
Queue< Object > q = new PriorityQueue<>();
Warteschlangenmitgliedstypen in Java
Unten sind alle in der Warteschlange verfügbaren Methoden aufgeführt:
Returns special value | Throws exception | |
Insert | offer(e) | add(e) |
Remove | poll() | remove() |
Examine | peek() | element() |
So as explained, two types of methods throw an exception and return a special value. There are three types of operation in this kind of operation: insertion, the second is removal, and the third is retrieval or examination. In the case of the remove operation, an object will be removed from the queue. Still, in the case of examination, the object will be returned without actually removing from the queue.
Given below are the different examples of Queue in Java:
Code:
import java.util.LinkedList; import java.util.Queue; public class QueueOperations { public static void main(String[] args) { Queue<Integer> q = new LinkedList<Integer> (); q.add(5); q.add(2); q.add(1); q.add(4); q.add(3); System.out.println(q); } }
Output:
Note here that the order of insertion is the same with output from left to write.
Code:
import java.util.LinkedList; import java.util.Queue; public class QueueOperations { public static void main(String[] args) { Queue<Integer> q = new LinkedList<Integer> (); q.add(5); q.add(2); q.add(1); q.add(4); q.add(3); System.out.println(q); while (!q.isEmpty()) { System.out.print(q.remove() + " "); } System.out.println(""); System.out.println(q); } }
Output:
Here, we have used the function isEmpty() to check when the queue becomes empty after removing elements. The removal order is the same as per the insertion. After removing all the elements, we printed the queue and obtained an empty bracket at the end.
Code:
import java.util.PriorityQueue; import java.util.Queue; public class QueueOperations { public static void main(String[] args) { Queue<Integer> q = new PriorityQueue<Integer> (); q.add(5); q.add(2); q.add(1); q.add(4); q.add(3); System.out.println(q); while (!q.isEmpty()) { System.out.print(q.remove() + " "); } System.out.println(""); System.out.println(q); } }
Output:
Here, we have used PriorityQueue, which will hold and return the elements depending upon the elements’ natural ordering or upon the comparator, if any passed. Note the insertion order and removal orders are not the same. The removal is based totally on the value of elements.
Code:
import java.util.LinkedList; import java.util.Queue; public class QueueOperations { public static void main(String[] args) { Queue<Integer> q = new LinkedList<Integer> (); q.add(5); q.add(2); q.add(1); q.add(4); q.add(3); System.out.println(q); System.out.println( q.peek() ); System.out.println(q); } }
Output:
Note here that we have used the peek() function, which will return the head of the queue without actually removing it. We printed the queue after performing the peek operation, and you can observe that the head element, which is 5, remains unchanged in the queue.
Code:
import java.util.PriorityQueue; import java.util.Queue; public class QueueOperations { public static void main(String[] args) { Queue<Integer> q = new PriorityQueue<Integer> (); q.add(5); q.add(2); q.add(1); q.add(4); q.add(3); System.out.println(q); System.out.println( q.peek() ); System.out.println(q); } }
Output:
This is similar to the previous example’s LinkedList operation, but note the head element is 1 because it’s a PriorityQueue.
Java utilizes the Queue interface as a means to maintain elements in insertion order. It supports operations like insertion, retrieval, and removal. There are alternative methods available for all the methods. We have seen examples of the most commonly used methods in queue operation.
Das obige ist der detaillierte Inhalt vonWarteschlange in Java. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!