-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSortCharactersByFrequency.java
79 lines (67 loc) · 2.14 KB
/
SortCharactersByFrequency.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.*;
/** https://leetcode.com/problems/sort-characters-by-frequency/ */
public class SortCharactersByFrequency {
public static void main(String[] args) {
System.out.println(frequencySort("Aabb"));
}
static class Element {
int count;
char character;
public Element(int count, char character) {
this.count = count;
this.character = character;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public char getCharacter() {
return character;
}
public void setCharacter(char character) {
this.character = character;
}
@Override
public String toString() {
return "Element{" +
"count=" + count +
", character=" + character +
'}';
}
}
public static class ElementComparator implements Comparator<Element> {
@Override
public int compare(Element obj1, Element obj2) {
return obj2.count - obj1.count;
}
}
/**
* LeetCode stats:
* Runtime: 27 ms, faster than 22.75% of Java online submissions.
* Memory Usage: 43 MB, less than 7.41% of Java online submissions
* */
public static String frequencySort(String s) {
Map<Character, Element> lookup = new HashMap<>();
for(char c : s.toCharArray()) {
if(lookup.containsKey(c)) {
Element element = lookup.get(c);
element.count += 1;
lookup.put(c, element);
} else {
lookup.put(c, new Element(1, c));
}
}
List<Element> data = new ArrayList<>();
data.addAll(lookup.values());
Collections.sort(data, new ElementComparator());
StringBuffer result = new StringBuffer();
for(Element element: data) {
for(int i = 0; i < element.count; i++) {
result.append(element.character);
}
}
return result.toString();
}
}