//Driver class, to use with the student's HeapPriorityQueue. import java.util.*; import java.lang.*; public class LunchRoom { public static void main(String[] args) { int MINUTES_OPEN = 1080; int SERVICE_AREAS = 3; // PriorityQueue heap = new PriorityQueue<>(); // java's PQ HeapPriorityQueue heap = new HeapPriorityQueue<>(); // your heap implementation /*--implement the PriorityQueue API in your HeapPriorityQueue so that these all work ----------*/ System.out.println( heap.peek() ); //null boolean added = heap.add(new Student(1, "2018")); //add a Freshman added = heap.add(new Student(4, "2015")); //add a Senior after the Freshman System.out.println( heap.peek() ); //4 2015 System.out.println( heap.remove() ); //4 2015 System.out.println( heap.isEmpty() ); //false System.out.println( heap.remove() ); //1 2018 System.out.println( heap.isEmpty() ); //true System.out.println( "------------------"); /*-----now begin the LunchRoom lab -----------------------------------------*/ int[] totalCustomers = new int[4]; int[] longestWait = new int[4]; int[] totalWait = new int[4]; int[] timeServing = new int[SERVICE_AREAS]; Student[] customers = new Student[SERVICE_AREAS]; for(int m=0;m<=MINUTES_OPEN || !heap.isEmpty() || customers[0]!=null || customers[1] !=null || customers[2] != null;m++) { String s = "["; boolean b = false; for(int i=0;i=0;i--) { double averageWait = (double) totalWait[i]/totalCustomers[i]; if(i==3) System.out.print("Senior\t\t"); if(i==2) System.out.print("Junior\t\t"); if(i==1) System.out.print("Sophomore\t"); if(i==0) System.out.print("Freshman\t"); System.out.println(totalCustomers[i] + "\t\t" + longestWait[i] + "\t\t" + averageWait); } } } class Student implements Comparable { private String myGradYear; private int arrivalTime; private int serviceTime; public Student(int arrTime, String year) { arrivalTime=arrTime; serviceTime = (int) (Math.random() * 6 + 2); myGradYear = year; } public int compareTo(Student obj) { return Integer.parseInt(myGradYear) - Integer.parseInt(obj.myGradYear); } public int getService() { return serviceTime; } public int getArrival() { return arrivalTime; } public String toString() { return arrivalTime + " " + myGradYear; } } class Senior extends Student { public Senior(int arrTime) { super(arrTime, "2015"); } } class Junior extends Student { public Junior(int arrTime) { super(arrTime, "2016"); } } class Sophomore extends Student { public Sophomore(int arrTime) { super(arrTime, "2017"); } } class Freshman extends Student { public Freshman(int arrTime) { super(arrTime, "2018"); } }