Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create pqtemplate.java #2628

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions priority-queue/pqtemplate.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import java.util.PriorityQueue;

public class PriorityQueueExample {
public static void main(String[] args) {
// Create a priority queue of integers
PriorityQueue<Integer> priorityQueue = new PriorityQueue<>();

// Adding elements to the priority queue
priorityQueue.add(5);
priorityQueue.add(3);
priorityQueue.add(8);
priorityQueue.add(1);
priorityQueue.add(4);

// Printing the elements of the priority queue
System.out.println("Priority Queue Elements: " + priorityQueue);

// Removing elements from the priority queue (min-heap order)
while (!priorityQueue.isEmpty()) {
int element = priorityQueue.poll();
System.out.println("Removed: " + element);
}
}
}