LeetCode-每日练习:颠倒字符串中的单词

151. 颠倒字符串中的单词

给你一个字符串 s ,颠倒字符串中 单词 的顺序。
单词 是由非空格字符组成的字符串。s 中使用至少一个空格将字符串中的 单词 分隔开。
返回 单词 顺序颠倒且 单词 之间用单个空格连接的结果字符串。
注意:输入字符串 s中可能会存在前导空格、尾随空格或者单词间的多个空格。返回的结果字符串中,单词间应当仅用单个空格分隔,且不包含任何额外的空格。

输入:s = "the sky is blue"
输出:"blue is sky the"

  • 方法1:切片+反转+列表转为字符串
class Solution:
    def reverseWords(self, s: str) -> str:
        word = s.split(' ')
        # print(word)
        res = []
        for w in word:
            if w != '':
                res.append(w)
        return ' '.join(res[::-1])
  • 方法2:模拟算法+双指针
class Solution:
    def reverseWords(self, s: str) -> str:
        res = []
        word = ''
        for ch in s:
            if ch == ' ':
                # 当字符串非空
                if word:
                    # 添加新的单词
                    res.append(word)
                    # 单词重置
                    word = ''
            else:
                word += ch
        # 添加最后一个单词
        if word:
            res.append(word)
        # 双指针交换位置
        for i in range(len(res)//2):
            res[i], res[len(res)-i-1] = res[len(res)-i-1], res[i]
        return ' '.join(res)

你可能感兴趣的:(LeetCode-每日练习:颠倒字符串中的单词)