LC 1592. 重新排列单词间的空格

题目描述

这是 LeetCode 上的 1592. 重新排列单词间的空格 ,难度为 简单

给你一个字符串 text,该字符串由若干被空格包围的单词组成。每个单词由一个或者多个小写英文字母组成,并且两个单词之间至少存在一个空格。题目测试用例保证 text 至少包含一个单词 。

请你重新排列空格,使每对相邻单词之间的空格数目都 相等 ,并尽可能 最大化 该数目。如果不能重新平均分配所有空格,请 将多余的空格放置在字符串末尾 ,这也意味着返回的字符串应当与原 text 字符串的长度相等。

返回 重新排列空格后的字符串 。

示例 1:

1
2
3
4
5
输入:text = "  this   is  a sentence "

输出:"this is a sentence"

解释:总共有 9 个空格和 4 个单词。可以将 9 个空格平均分配到相邻单词之间,相邻单词间空格数为:9 / (4-1) = 3 个。

示例 2:
1
2
3
4
5
输入:text = " practice   makes   perfect"

输出:"practice makes perfect "

解释:总共有 7 个空格和 3 个单词。7 / (3-1) = 3 个空格加上 1 个多余的空格。多余的空格需要放在字符串的末尾。

示例 3:
1
2
3
输入:text = "hello   world"

输出:"hello world"

示例 4:
1
2
3
输入:text = "  walks  udp package   into  bar a"

输出:"walks udp package into bar a "

示例 5:
1
2
3
输入:text = "a"

输出:"a"

提示:

  • $1 <= text.length <= 100$
  • text 由小写英文字母和 ' ' 组成
  • text 中至少包含一个单词

模拟

根据题意模拟即可:使用「双指针」统计空格数量和分割出所有单词。

Java 代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Solution {
public String reorderSpaces(String s) {
int n = s.length(), cnt = 0;
List<String> list = new ArrayList<>();
for (int i = 0; i < n; ) {
if (s.charAt(i) == ' ' && ++i >= 0 && ++cnt >= 0) continue;
int j = i;
while (j < n && s.charAt(j) != ' ') j++;
list.add(s.substring(i, j));
i = j;
}
StringBuilder sb = new StringBuilder();
int m = list.size(), t = cnt / Math.max(m - 1, 1);
String k = "";
while (t-- > 0) k += " ";
for (int i = 0; i < m; i++) {
sb.append(list.get(i));
if (i != m - 1) sb.append(k);
}
while (sb.length() != n) sb.append(" ");
return sb.toString();
}
}

TypeScript 代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function reorderSpaces(s: string): string {
let n = s.length, cnt = 0
const list = new Array<string>()
for (let i = 0; i < n; ) {
if (s[i] == ' ' && ++i >= 0 && ++cnt >= 0) continue
let j = i + 1
while (j < n && s[j] != ' ') j++
list.push(s.substring(i, j))
i = j
}
let ans = '', k = ''
let m = list.length, t = Math.floor(cnt / Math.max(m - 1, 1))
while (t-- > 0) k += ' '
for (let i = 0; i < m; i++) {
ans += list[i]
if (i != m - 1) ans += k
}
while (ans.length != n) ans += ' '
return ans
};

  • 时间复杂度:$O(n)$
  • 空间复杂度:$O(n)$

最后

这是我们「刷穿 LeetCode」系列文章的第 No.1592 篇,系列开始于 2021/01/01,截止于起始日 LeetCode 上共有 1916 道题目,部分是有锁题,我们将先把所有不带锁的题目刷完。

在这个系列文章里面,除了讲解解题思路以外,还会尽可能给出最为简洁的代码。如果涉及通解还会相应的代码模板。

为了方便各位同学能够电脑上进行调试和提交代码,我建立了相关的仓库:https://github.com/SharingSource/LogicStack-LeetCode

在仓库地址里,你可以看到系列文章的题解链接、系列文章的相应代码、LeetCode 原题链接和其他优选题解。


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!