-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjava-priority-queue.java
80 lines (69 loc) · 2.13 KB
/
java-priority-queue.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import java.util.PriorityQueue;
/*
* Create the Student and Priorities classes here.
*/
class Student implements Comparable<Student> {
private int id;
private String name;
private double cgpa;
public Student(int id, String name, double cgpa) {
this.id = id;
this.name = name;
this.cgpa = cgpa;
}
public int getID() {
return this.id;
}
public String getName() {
return this.name;
}
public double getCGPA() {
return this.cgpa;
}
public int compareTo(Student student) {
if (this.getCGPA() > student.getCGPA()) {
return -1;
} else if (this.getCGPA() < student.getCGPA()) {
return 1;
} else {
if (this.getName() != student.getName()) {
return this.getName().compareTo(student.getName());
} else {
if (this.getID() > student.getID()) {
return 1;
} else if (this.getID() < student.getID()) {
return -1;
} else {
return 0;
}
}
}
}
}
class Priorities {
public List<Student> getStudents(List<String> events) {
PriorityQueue<Student> studentPriorityQueue = new PriorityQueue<>();
for (int i = 0; i < events.size(); i++) {
String[] eventDetails = events.get(i).split(" ");
if (eventDetails[0].equals("ENTER")) {
studentPriorityQueue.add(new Student(
Integer.parseInt(eventDetails[3]),
eventDetails[1],
Double.parseDouble(eventDetails[2])
));
} else {
if (!studentPriorityQueue.isEmpty()) {
studentPriorityQueue.remove();
}
}
}
List<Student> students = new ArrayList();
while (!studentPriorityQueue.isEmpty()) {
students.add(studentPriorityQueue.remove());
}
return students;
}
}