APCS/06 Stacks _ Queues/09 LunchRoom/PriorityQueueDemo.java
Rushil Umaretiya 3fc3554899 initial commit
2020-12-04 22:00:49 -05:00

26 lines
649 B
Java

import java.util.*;
public class PriorityQueueDemo
{
public static void main(String [] args)
{
PriorityQueue<Customer> pq = new PriorityQueue<Customer>();
//MyPriorityQueue pq = new MyPriorityQueue();
pq.add(new Customer(0,0));
pq.add(new Customer(5,3));
pq.add(new Customer(1,0));
pq.add(new Customer(5,2));
pq.add(new Customer(2,0));
// pq.add("b");
// pq.add("a");
// pq.add("d");
// pq.add("b");
// pq.add("a");
// pq.add("d");
// pq.add("b");
// pq.add("a");
while( !pq.isEmpty() )
System.out.print( pq.remove() + " ");
}
}