What Is Priorityqueue Or Priority Queue Information Construction Inwards Coffee Amongst Representative - Tutorial

PriorityQueue is an unbounded Queue implementation inwards Java, which is based on priority heap. PriorityQueue allows you lot to proceed elements inwards a detail order, according to in that place natural guild or custom guild defined by Comparator interface inwards Java. Head of priority queue information construction will ever comprise to the lowest degree chemical component alongside honor to specified ordering. For example, inwards this post, nosotros volition exercise a PriorityQueue of Items, which are ordered based upon in that place price, this volition allow us to procedure Items, starting from lowest price. Priority queue is too real useful inwards implementing Dijkstra algorithm inwards Java. You tin work to PriorityQueue to proceed unsettled nodes for processing. One of the key affair to shout out back close PriorityQueue inwards Java is that it's Iterator doesn't guarantee whatever order, if you lot desire to traverse inwards ordered fashion, meliorate work Arrays.sort(pq.toArray()) method. PriorityQueue is too not synchronized, which way tin non live on shared safely betwixt multiple threads, instead it's concurrent counterpart PriorityBlockingQueue is thread-safe together with should live on used inwards multithreaded environment. Priority queue provides O(log(n)) fourth dimension functioning for mutual enqueing together with dequeing methods e.g. offer(), poll() together with add(), but constant fourth dimension for retrieval methods e.g. peek() together with element().


How to work PriorityQueue inwards Java

Comparator provided to PriorityQueue. In this example, nosotros cause got kept discover of Items inwards PriorityQueue, whose natural ordering is decided past times it's price. 



You tin accept a await at Item course of report compareTo method, it's consistent with equals method and too sorts Items based upon in that place price. I cause got too exercise Item equally nested static course of report here. By storing Item inwards priority queue, you lot tin ever retrieve Item alongside lowest toll past times using poll() method of Queue interface.

package test;

import java.util.PriorityQueue;
import java.util.Queue;

/**
  * Java Program to demo How to work PriorityQueue inwards Java. This instance too demonstrate
  * that PriorityQueue doesn't allow cipher elements together with how PriorityQueue keeps elements i.e. ordering.
  *
  * @author
 */
public class PriorityQueueTest {

    public static void main(String args[]) {

        Queue<Item> items = new PriorityQueue<Item>();
        items.add(new Item("IPone", 900));
        items.add(new Item("IPad", 1200));
        items.add(new Item("Xbox", 300));
        items.add(new Item("Watch", 200));

        System.out.println("Order of items inwards PriorityQueue");
        System.out.println(items);
      
        System.out.println("Element consumed from caput of the PriorityQueue : " + items.poll());
        System.out.println(items);
      
        System.out.println("Element consumed from caput of the PriorityQueue : " + items.poll());
        System.out.println(items);
      
        System.out.println("Element consumed from caput of the PriorityQueue : " + items.poll());
        System.out.println(items);
      
        //items.add(null); // cipher elements non allowed inwards PriorityQueue - NullPointerException

    }

    private static class Item implements Comparable<Item> {

        private String name;
        private int price;

        public Item(String name, int price) {
            this.name = name;
            this.price = price;
        }

        public String getName() {
            return name;
        }

        public int getPrice() {
            return price;
        }

        @Override
        public boolean equals(Object obj) {
            if (obj == null) {
                return false;
            }
            if (getClass() != obj.getClass()) {
                return false;
            }
            final Item other = (Item) obj;
            if ((this.name == null) ? (other.name != null) : !this.name.equals(other.name)) {
                return false;
            }
            if (this.price != other.price) {
                return false;
            }
            return true;
        }

        @Override
        public int hashCode() {
            int hash = 5;
            hash = 97  hash + (this.name != null ? this.name.hashCode() : 0);
            hash = 97  hash + this.price;
            return hash;
        }

        @Override
        public int compareTo(Item i) {
            if (this.price == i.price) {
                return this.name.compareTo(i.name);
            }

            return this.price - i.price;
        }

        @Override
        public String toString() {
            return String.format("%s: $%d", name, price);
        }      
      
    }
}

Output:
Order of items inwards PriorityQueue

[Watch: $200, Xbox: $300, IPone: $900, IPad: $1200]
Element consumed from caput of the PriorityQueue : Watch: $200

[Xbox: $300, IPad: $1200, IPone: $900]
Element consumed from caput of the PriorityQueue : Xbox: $300

[IPone: $900, IPad: $1200]
Element consumed from caput of the PriorityQueue : IPone: $900

[IPad: $1200]

From the to a higher house output, it's clear that PriorityQueue keeps to the lowest degree value chemical component at head, where ordering is determined using compareTo() method. It doesn't proceed all elements inwards that guild though, alone caput beingness to the lowest degree value chemical component is guaranteed. This is inwards fact chief departure betwixt TreeSet together with PriorityQueue inwards Java, old keeps all elements inwards a detail sorted order, spell priority queue only keeps caput inwards sorted order. Another of import indicate to depository fiscal establishment complaint is that PriorityQueue  doesn't permit cipher elements together with trying to add together cipher elements volition result inwards NullPointerException, as shown below :

Exception inwards thread "main" java.lang.NullPointerException
        at java.util.PriorityQueue.offer(PriorityQueue.java:265)
        at java.util.PriorityQueue.add(PriorityQueue.java:251)
        at test.PriorityQueueTest.main(PriorityQueueTest.java:36)
Java Result: 1

Summary

Like whatever other Collection class, it's worth noting to shout out back key points close PriorityQueue inwards Java.

1) PriorityQueue is non synchronized, if thread-safety is requirement work BlockingPriorityQueue.
2) Queue retrieval methods similar poll(), peek() together with element() access caput of Queue, which keeps to the lowest degree chemical component according to specified ordering.

3) Iterator returned past times PriorityQueue doesn't offering whatever ordering traversal guarantee.
4) PriorityQueue doesn't allow null elements, if you lot crusade to add together null, it volition throw java.lang.NullPointerException.

That's all on what is PriorityQueue inwards Java together with How to work them. It's an particular class, which tin live on used inwards particular scenarios, where you lot involve to eat Orders inwards a detail order, shout out back BlockingQueue maintains insertion order, but if desire to maintain a custom order, PriorityQueue or BlockingPriorityQueue is correct collection to use. TreeSet too provides similar functionality, but doesn't cause got i brusk retrieval cum removal method e.g. poll().


Further Learning
Java In-Depth: Become a Complete Java Engineer
Java Fundamentals: Collections
Data Structures together with Algorithms: Deep Dive Using Java

Recommended Book
Though PriorityQueue has quite specialized use, it is i of the Collection class, which is oft overlooked. Like whatever other Collection topic, Java Generics together with Collection contains roughly of the best available information close PriorityQueue. If you lot similar to acquire more, accept a re-create of that book.


Sumber https://javarevisited.blogspot.com/

0 Response to "What Is Priorityqueue Or Priority Queue Information Construction Inwards Coffee Amongst Representative - Tutorial"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel