-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathComparatorExample.java
47 lines (38 loc) · 1.1 KB
/
ComparatorExample.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
package com.javaexperiments;
/*
*Comparators are used to compare two objects.
*/
import java.util.*;
class Checker implements Comparator<Player> {
// Sorting the player according to their score (Descending), if the score is same, then sorting alphabetically
public int compare(Player p1, Player p2) {
if (p1.score == p2.score)
return p1.name.compareTo(p2.name);
else
return p2.score - p1.score;
}
}
class Player{
String name;
int score;
Player(String name, int score){
this.name = name;
this.score = score;
}
}
class ComparatorExample {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
Player[] player = new Player[n];
Checker checker = new Checker();
for(int i = 0; i < n; i++){
player[i] = new Player(scan.next(), scan.nextInt());
}
scan.close();
Arrays.sort(player, checker);
for (Player value : player) {
System.out.printf("%s %s\n", value.name, value.score);
}
}
}