练习6: 557. 反转字符串中的单词 III

题目

给定一个字符串,你需要反转字符串中每个单词的字符顺序,同时仍保留空格和单词的初始顺序。

示例 1:

输入: “Let’s take LeetCode contest”
输出: “s’teL ekat edoCteeL tsetnoc”

示例
注意:在字符串中,每个单词由单个空格分隔,并且字符串中不会有任何额外的空格。

思路

方法

  • 按照空格切分字符串形成字符串列表
  • for 循环遍历整个字符串列表
    • 子方法1:针对每一个列表,使用双指针反向排列
    • 子方法2:使用 return s[::-1]
    • 子方法3:使用reverse
    • 将新产生的反方向的字符放入一个列表中
  • 将整个列表中的所有元素用空格拼接
class Solution:
    def reverseStr(self, test_str):
        test_list = test_str.split(" ")
        reverse_list = []
        
        for i in test_list:
            print(i)
            #list() and split() can turn str in to a list
                ##list() make individual unit into a component in the list
                ## split() can only make this string as a component in the list
                    ####and this list will only have one componebt
            temp_list = list(i)
            #method 1
            temp_list.reverse()
            #method 2
            #temp_list = temp_list[::-1]
            #method 3
            #temp_list = list(reversed(temp_list))
            temp_str = ''.join(temp_list)
            reverse_list.append(temp_str)
            
        reverse_str = ' '.join(reverse_list)
        return reverse_str

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值