-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathText_Justification.cpp
65 lines (63 loc) · 2.27 KB
/
Text_Justification.cpp
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
class Solution {
public:
vector<string> fullJustify(vector<string>& words, int maxWidth) {
vector<string> result;
int n =words.size();
if(words.empty())
return result;
for(int left = 0, right = 0; right < n; left = right) {
string line;
line.reserve(maxWidth);
int len = 0;
while(right < n and ((left == right and
len + words[right].length() <= maxWidth) or
(right > left and len + words[right].length() + 1 <= maxWidth))) {
len += (left ==right) ? words[right].length() : words[right].length() + 1;
right++;
}
int taken = right - left;
int whiteSpaces = maxWidth - (len - taken + 1);
if(right == n or taken == 1) { // last line or just one word
for(int k = left; k < right - 1; ++k) {
line += words[k];
line += " ";
}
line += words[right - 1];
string gap;
gap.reserve(whiteSpaces - taken + 1);
for(int i = 0; i < whiteSpaces - taken + 1; ++i) {
gap += " ";
}
line += gap;
}
/*
else if(taken == 1) {
line = words[left];
string gap;
gap.reserve(whiteSpaces);
for(int i = 0; i < whiteSpaces; ++i) {
gap += " ";
}
line += gap;
}*/
else {
int spaces = whiteSpaces / (taken - 1);
string gap;
gap.reserve(spaces + 1);
for(int i = 0; i < spaces; ++i) {
gap += " ";
}
int extra = whiteSpaces % (taken - 1);
for(int k = left; k < right - 1; ++k) {
line += words[k];
line += gap;
if(k - left < extra) {
line += " ";
}
}
line += words[right - 1];
}
result.push_back(line);
}
}
};