-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathReorderDataInLogFiles.java
41 lines (35 loc) · 1.46 KB
/
ReorderDataInLogFiles.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
/*https://leetcode.com/problems/reorder-data-in-log-files/*/
class Solution {
public String[] reorderLogFiles(String[] logs) {
Comparator<String> myComp = new Comparator<String>() {
@Override
public int compare(String log1, String log2) {
// split each log into two parts: <identifier, content>
String[] split1 = log1.split(" ", 2);
String[] split2 = log2.split(" ", 2);
boolean isDigit1 = Character.isDigit(split1[1].charAt(0));
boolean isDigit2 = Character.isDigit(split2[1].charAt(0));
// case 1). both logs are letter-logs
if (!isDigit1 && !isDigit2) {
// first compare the content
int cmp = split1[1].compareTo(split2[1]);
if (cmp != 0)
return cmp;
// logs of same content, compare the identifiers
return split1[0].compareTo(split2[0]);
}
// case 2). one of logs is digit-log
if (!isDigit1 && isDigit2)
// the letter-log comes before digit-logs
return -1;
else if (isDigit1 && !isDigit2)
return 1;
else
// case 3). both logs are digit-log
return 0;
}
};
Arrays.sort(logs, myComp);
return logs;
}
}