吾日三省吾身
还记得的梦想吗
正在努力实现它吗
可以坚持下去吗
目录
力扣题号:151. 反转字符串中的单词 - 力扣(LeetCode)
注:下述题目描述和示例均来自力扣
给你一个字符串
s
,请你反转字符串中 单词 的顺序。单词 是由非空格字符组成的字符串。
s
中使用至少一个空格将字符串中的 单词 分隔开。返回 单词 顺序颠倒且 单词 之间用单个空格连接的结果字符串。
注意:输入字符串
s
中可能会存在前导空格、尾随空格或者单词间的多个空格。返回的结果字符串中,单词间应当仅用单个空格分隔,且不包含任何额外的空格。
示例 1:
输入:s = "the sky is blue" 输出:"blue is sky the"示例 2:
输入:s = " hello world " 输出:"world hello" 解释:反转后的字符串中不能存在前导空格和尾随空格。示例 3:
输入:s = "a good example" 输出:"example good a" 解释:如果两个单词间有多余的空格,反转后的字符串需要将单词间的空格减少到仅有一个。
1 <= s.length <= 104
s
包含英文大小写字母、数字和空格' '
s
中 至少存在一个 单词
进阶:如果字符串在你使用的编程语言中是一种可变数据类型,请尝试使用 O(1)
额外空间复杂度的 原地 解法。
我们只需要先去除开头和结尾的字符串然后去掉中间冗余的字符串即可。开头和中间的字符串可以通过双指针的方法,让快指针快速遍历,当遇到字母的时候把快指针的元素赋值给慢指针的元素既可以。然后尾部的空格使用数组复制一个大小刚刚合适的数组中即可。然后整体翻转字符串再单独的翻转即可。
- class Solution {
- public String reverseWords(String s) {
- // 删除空格
- char[] noSpace = removeSpace(s);
- // 翻转整个字符串
- reverseEveryone(noSpace,0,noSpace.length - 1);
- // 翻转单个单词
- reverseOneWord(noSpace);
- return new String(noSpace);
- }
-
- /**
- * 删除空格
- * @param str
- * @return
- */
- public char[] removeSpace(String str) {
- char[] chars = str.toCharArray();
- int first = 0;
- int second = 0;
- int len = chars.length;
- // hello..word.
-
- for (; second < len; second++) {
-
- if (chars[second] != ' ') {
- // 添加空格,确保没在开头添加
- if (first != 0) {
- chars[first] = ' ';
- // 然后让first++,不然会被重新覆盖
- first++;
- }
- // 这里second指向的就不是空格,将后面的单词迁移覆盖空格
- while (second < len && chars[second] != ' ') {
- chars[first] = chars[second];
- first++;
- second++;
- }
- // 但是如果就这样就结束了空格操作,确实空格没了,但是一个空格都没了,
- // 所以需要在每次删除空格之前添加一个空格
- // 但是开头不需要空格
- // 所以我们需要再开头增加一个空格的添加逻辑
- }
- }
- // 然后我们就只剩下了尾部的空格还没有删除
- // 我们只需要将它复制到一个新的字符数组里就行,这样尾部的自然就没有了
- // 参数
- //src – the source array.
- //srcPos – starting position in the source array.
- //dest – the destination array.
- //destPos – starting position in the destination data.
- //length – the number of array elements to be copied.
- char[] newChars = new char[first];
- System.arraycopy(chars, 0, newChars, 0, first);
- return newChars;
- }
-
- /**
- * 翻转整个字符串
- * @param chars
- */
- public void reverseEveryone(char[] chars, int start, int end){
- while (start < end){
- char temp = chars[start];
- chars[start] = chars[end];
- chars[end] = temp;
- start++;
- end--;
- }
- }
-
- /**
- * 反转单个单词
- * @param chars
- */
- public void reverseOneWord(char[] chars){
- // olleh dlrow
- // hello world
- int first = 0;
- int second = 0;
- for (; second < chars.length + 1; second++) {
- if (second == chars.length || chars[second] == ' '){
- reverseEveryone(chars, first, second - 1);
- first = second + 1;
- }
- }
- }
- }
ヾ( ̄▽ ̄)Bye~Bye~