@@ -79,7 +79,7 @@ void removeExtraSpaces(string& s) {
7979
8080逻辑很简单,从前向后遍历,遇到空格了就erase。
8181
82- 如果不仔细琢磨一下erase的时间复杂读,还以为以上的代码是$O (n)$ 的时间复杂度呢。
82+ 如果不仔细琢磨一下erase的时间复杂读,还以为以上的代码是O (n)的时间复杂度呢。
8383
8484想一下真正的时间复杂度是多少,一个erase本来就是O(n)的操作,erase实现原理题目:[数组:就移除个元素很难么?](https://programmercarl.com/0027.移除元素.html),最优的算法来移除元素也要O(n)。
8585
@@ -222,7 +222,44 @@ public:
222222效率:
223223<img src =' https://code-thinking.cdn.bcebos.com/pics/151_翻转字符串里的单词.png ' width =600 > </img ></div >
224224
225+ ``` CPP
226+ // 版本二:
227+ // 原理同版本1,更简洁实现。
228+ class Solution {
229+ public:
230+ void reverse(string& s, int start, int end){ //翻转,区间写法:闭区间 [ ]
231+ for (int i = start, j = end; i < j; i++, j--) {
232+ swap(s[ i] , s[ j] );
233+ }
234+ }
235+
236+ void removeExtraSpaces(string& s) {//去除所有空格并在相邻单词之间添加空格, 快慢指针。
237+ int slow = 0; //整体思想参考Leetcode: 27. 移除元素:https://leetcode-cn.com/problems/remove-element/
238+ for (int i = 0; i < s.size(); ++i) { //
239+ if (s[i] != ' ') { //遇到非空格就处理,即删除所有空格。
240+ if (slow != 0) s[slow++] = ' '; //手动控制空格,给单词之间添加空格。slow != 0说明不是第一个单词,需要在单词前添加空格。
241+ while (i < s.size() && s[i] != ' ') { //补上该单词,遇到空格说明单词结束。
242+ s[slow++] = s[i++];
243+ }
244+ }
245+ }
246+ s.resize(slow); // slow的大小即为去除多余空格后的大小。
247+ }
225248
249+ string reverseWords (string s) {
250+ removeExtraSpaces(s); //去除多余空格,保证单词之间之只有一个空格,且字符串首尾没空格。
251+ reverse(s, 0, s.size() - 1);
252+ int start = 0; //removeExtraSpaces后保证第一个单词的开始下标一定是0。
253+ for (int i = 0; i <= s.size(); ++i) {
254+ if (i == s.size() || s[ i] == ' ') { //到达空格或者串尾,说明一个单词结束。进行翻转。
255+ reverse(s, start, i - 1); //翻转,注意是左闭右闭 [ ] 的翻转。
256+ start = i + 1; //更新下一个单词的开始下标start
257+ }
258+ }
259+ return s;
260+ }
261+ };
262+ ```
226263
227264## 其他语言版本
228265
0 commit comments