Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Collection, PriorityQueue Exercises: Create a new priority queue, add some colors (string) and print out the elements of the priority queue

Java Collection, PriorityQueue Exercises: Exercise-1 with Solution

Write a Java program to create a new priority queue, add some colors (string) and print out the elements of the priority queue.

Sample Solution:-

Java Code:

import java.util.PriorityQueue;
public class Exercise1 {
  public static void main(String[] args) {
  PriorityQueue<String> queue=new PriorityQueue<String>();  
  queue.add("Red");
  queue.add("Green");
  queue.add("Orange");
  queue.add("White");
  queue.add("Black");
  System.out.println("Elements of the Priority Queue: ");
  System.out.println(queue);
 }
}

Sample Output:

Elements of the Priority Queue:                                        
[Black, Green, Orange, White, Red] 

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Remove a given element from a tree set.
Next: Iterate through all elements in priority queue.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe