LeetCode 1592 重新排列单词间的空格
目录
文章目录
1. 题目描述
1.1. Limit
Time Limit: 2000 ms
Memory Limit: 131072 kB
1.2. Problem Description
给你一个字符串 text
,该字符串由若干被空格包围的单词组成。每个单词由一个或者多个小写英文字母组成,并且两个单词之间至少存在一个空格。题目测试用例保证 text
至少包含一个单词 。
请你重新排列空格,使每对相邻单词之间的空格数目都 相等 ,并尽可能 最大化 该数目。如果不能重新平均分配所有空格,请 将多余的空格放置在字符串末尾 ,这也意味着返回的字符串应当与原 text
字符串的长度相等。
返回 重新排列空格后的字符串
。
1.3. Sample Input 1
输入:text = " this is a sentence "
1.4. Sample Output 1
输出:"this is a sentence"
解释:总共有 9 个空格和 4 个单词。可以将 9 个空格平均分配到相邻单词之间,相邻单词间空格数为:9 / (4-1) = 3 个。
1.5. Sample Input 2
输入:text = " practice makes perfect"
1.6. Sample Output 2
输出:"practice makes perfect "
解释:总共有 7 个空格和 3 个单词。7 / (3-1) = 3 个空格加上 1 个多余的空格。多余的空格需要放在字符串的末尾。
1.7. Source
2. 解读
先统计单词和空格数量, 然后计算中间和剩下的空格数量。
3. 代码
class Solution {
public:
string reorderSpaces(string text)
{
size_t len = text.size();
int num = 0;
string str, gap, ans;
vector<string> vt;
// 统计单词和空格数量
for (size_t i = 0; i < len; i++) {
if (text[i] == ' ') {
num++;
} else {
str.push_back(text[i]);
// 单词结束
if (i == len - 1 || text[i + 1] == ' ') {
vt.push_back(str);
str.clear();
}
}
}
// 计算中间和剩下的空格数量
size_t numWords = vt.size();
int spaces = numWords == 1 ? num : num / (numWords - 1);
int left = num - spaces * (numWords - 1);
while (spaces--)
gap.push_back(' ');
// 输出
for (size_t i = 0; i < numWords; i++) {
ans.append(vt[i]);
if (i != numWords - 1) {
ans.append(gap);
} else {
while (left--)
ans.append(" ");
}
}
return ans;
}
};
Python会方便很多,Python代码参考自一位题友的题解。
class Solution:
def reorderSpaces(self, text: str) -> str:
c = text.count(" ")
li = text.strip().split()
if len(li) == 1:
return li[0] + " " * c
s, s1 = divmod(c, len(li) - 1)
return (" " * s).join(li) + " " * s1
联系邮箱:curren_wong@163.com
CSDN:https://me.csdn.net/qq_41729780
知乎:https://zhuanlan.zhihu.com/c_1225417532351741952
公众号:复杂网络与机器学习
欢迎关注/转载,有问题欢迎通过邮箱交流。