《LeetCode之每日一题》:228.截断句子
Posted 是七喜呀!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《LeetCode之每日一题》:228.截断句子相关的知识,希望对你有一定的参考价值。
题目链接: 截断句子
有关题目
句子 是一个单词列表,列表中的单词之间用单个空格隔开,且不存在前导或尾随空格。
每个单词仅由大小写英文字母组成(不含标点符号)。
例如,"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)
int pos = 0, n = s.size();
int count = 0;
for (int i = 0; i <= n; i++)//注意这边结束的条件,i也可以从1开始
if (i == n|| s[i] == ' ')//注意示例中的三,可能会出现遍历到结束的情况
count++;
if (count == k)
pos = i;
break;
return s.substr(0, pos);
;
代码二:减小开销
class Solution
public:
string truncateSentence(string s, int k)
int pos = 0, n = s.size();
int count = 0;
for (int i = 0; i <= n; i++)//注意这边结束的条件
if (i == n|| s[i] == ' ')//注意示例中的三,可能会出现遍历到结束的情况
count++;
if (count == k)//我们仅当count值发生变化的时候我们才进行判断,有利于减小开销
pos = i;
break;
return s.substr(0, pos);//substr当前位置0,增加pos长度字符串
;
以上是关于《LeetCode之每日一题》:228.截断句子的主要内容,如果未能解决你的问题,请参考以下文章