Leetcode-68.文本左右对齐

给定一个单词数组和一个长度 maxWidth,重新排版单词,使其成为每行恰好有 maxWidth 个字符,且左右两端对齐的文本。

你应该使用“贪心算法”来放置给定的单词;也就是说,尽可能多地往每行中放置单词。必要时可用空格 ‘ ‘ 填充,使得每行恰好有 maxWidth 个字符。

要求尽可能均匀分配单词间的空格数量。如果某一行单词间的空格不能均匀分配,则左侧放置的空格数要多于右侧的空格数。

文本的最后一行应为左对齐,且单词之间不插入额外的空格。

说明:

单词是指由非空格字符组成的字符序列。
每个单词的长度大于 0,小于等于 maxWidth。
输入单词数组 words 至少包含一个单词。
示例:

输入:
words = [“This”, “is”, “an”, “example”, “of”, “text”, “justification.”]
maxWidth = 16
输出:
[
   “This    is    an”,
   “example  of text”,
   “justification.  “
]
示例 2:

输入:
words = [“What”,”must”,”be”,”acknowledgment”,”shall”,”be”]
maxWidth = 16
输出:
[
  “What   must   be”,
  “acknowledgment  “,
  “shall be        “
]
解释: 注意最后一行的格式应为 “shall be “ 而不是 “shall be”,
  因为最后一行应为左对齐,而不是左右两端对齐。
第二行同样为左对齐,这是因为这行只包含一个单词。
示例 3:

输入:
words = [“Science”,”is”,”what”,”we”,”understand”,”well”,”enough”,”to”,”explain”,
  “to”,”a”,”computer.”,”Art”,”is”,”everything”,”else”,”we”,”do”]
maxWidth = 20
输出:
[
  “Science  is  what we”,
“understand      well”,
  “enough to explain to”,
  “a  computer.  Art is”,
  “everything  else  we”,
  “do                  “
]

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/text-justification
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

解法1:模拟

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
80
81
82
83
84
85
class Solution {
private:
vector<string> res;
vector<string> nowword;
int n;
public:
vector<string> fullJustify(vector<string>& words, int maxWidth) {
int i;
int wordlen;
n=words.size();
int nowwordlen=0;
int nownum=0;
int leftblank;
int blank;
string temp;
i=0;
while(i<n)
{
wordlen=words[i].length();
if(nowwordlen+nownum+wordlen<=maxWidth) //判断能否放入
{
nowword.push_back(words[i]);
nowwordlen+=wordlen;
nownum++;
i++;
}
else
{
if(nownum==1) //如果只有一个单词左对齐
{
temp=words[i-1];
for(int j=0;j<maxWidth-words[i-1].length();j++)
{
temp+=' ';
}
res.push_back(temp);
temp="";
}
else //多个单词
{
leftblank=(maxWidth-nowwordlen)%(nownum-1); //左边放置空格多于右边的数量
blank=(maxWidth-nowwordlen)/(nownum-1); //若正好每个空格应放多少" "
int j=0;
while(leftblank-->0)
{
temp+=nowword[j];
for(int z=0;z<blank+1;z++)
{
temp+=' ';
}
j++;
}
while(j<nownum-1) // -1最后一个单词没有空格
{
temp+=nowword[j];
for(int z=0;z<blank;z++)
{
temp+=' ';
}
j++;
}
temp+=nowword[j];
res.push_back(temp);
temp="";
}
nowword.clear(); //置初值
nowwordlen=0;
nownum=0;
}
}
int j=0;
while(j<nownum-1) //最后一行左对齐
{
temp+=nowword[j];
temp+=' ';
j++;
}
temp+=nowword[j];
int len=maxWidth-temp.length();
for(int z=0;z<len;z++)
temp+=' ';
res.push_back(temp);
return res;
}
};