mirror of
https://github.com/Rushilwiz/APCS.git
synced 2025-04-04 20:40:20 -04:00
26 lines
649 B
Java
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() + " ");
|
|
}
|
|
}
|
|
|