-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path1592.Rearrange-Spaces-Between-Words.java
59 lines (49 loc) · 1.47 KB
/
1592.Rearrange-Spaces-Between-Words.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
// https://leetcode.com/problems/rearrange-spaces-between-words/
// algorithms
// Easy (43.87%)
// Total Accepted: 10,623
// Total Submissions: 24,212
// beats 100.0% of java submissions
class Solution {
private static final char BLANK = ' ';
public String reorderSpaces(String text) {
StringBuilder sb = new StringBuilder();
int blankNum = 0;
int len = text.length();
char[] chArr = text.toCharArray();
int idx = 0, preIdx = -1;
List<String> l = new ArrayList<>();
while (idx < len) {
if (chArr[idx] == BLANK) {
blankNum++;
idx++;
} else {
int j = idx + 1;
while (j < len && chArr[j] != BLANK) {
j++;
}
l.add(text.substring(idx, j));
idx = j;
}
}
int intervalNum = -1, endNum = -1;
if (l.size() == 1) {
intervalNum = 0;
endNum = blankNum;
} else {
intervalNum = blankNum / (l.size() - 1);
endNum = blankNum - intervalNum * (l.size() - 1);
}
sb.append(l.get(0));
for (int i = 1; i < l.size(); i++) {
for (int j = 0; j < intervalNum; j++) {
sb.append(BLANK);
}
sb.append(l.get(i));
}
for (int j = 0; j < endNum; j++) {
sb.append(BLANK);
}
return sb.toString();
}
}