Java: 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 priority queue, add some colors (strings) 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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/java-exercises/collection/java-collection-priority-queue-exercise-1.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics