1816. 截断句子
句子 是一个单词列表,列表中的单词之间用单个空格隔开,且不存在前导或尾随空格。每个单词仅由大小写英文字母组成(不含标点符号)。
- 例如,
"Hello World"
、"HELLO"
和"hello world hello world"
都是句子。
给你一个句子 s
和一个整数 k
,请你将 s
截断 ,使截断后的句子仅含 前 k
个单词。返回 截断 s
后得到的句子。
示例 1:
输入:s = "Hello how are you Contestant", k = 4
输出:"Hello how are you"
解释:
s 中的单词为 ["Hello", "how" "are", "you", "Contestant"]
前 4 个单词为 ["Hello", "how", "are", "you"]
因此,应当返回 "Hello how are you"
示例 2:
输入:s = "What is the solution to this problem", k = 4
输出:"What is the solution"
解释:
s 中的单词为 ["What", "is" "the", "solution", "to", "this", "problem"]
前 4 个单词为 ["What", "is", "the", "solution"]
因此,应当返回 "What is the solution"
示例 3:
输入:s = "chopper is not a tanuki", k = 5
输出:"chopper is not a tanuki"
提示:
1 <= s.length <= 500
k
的取值范围是[1, s 中单词的数目]
s
仅由大小写英文字母和空格组成s
中的单词之间由单个空格隔开- 不存在前导或尾随空格
题解
字符串拼接,根据题意模拟即可
class Solution {
public String truncateSentence(String s, int k) {
StringBuilder sb = new StringBuilder();
int count = 0;
for (int i = 0; i < s.length() && count < k; i++) {
if (s.charAt(i) == ' ') {
count++;
}
if (count < k) {
sb.append(s.charAt(i));
}
}
return sb.toString();
}
}
- 时间复杂度:O(n)
- 空间复杂度:O(1)
更快的模拟
class Solution {
public String truncateSentence(String s, int k) {
int count = 0;
for (int i = 0; i < s.length(); i++) {
if (s.charAt(i) == ' ') {
count++;
if (count == k) {
return s.substring(0, i);
}
}
}
return s;
}
}
- 时间复杂度:O(n)
- 空间复杂度:O(1)
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/140693.html