[0557] 反转字符串中的单词 III
- GitHub
- http://leetcode.xuezhisd.top/post/c5c0329.html
- https://leetcode.com/problems/reverse-words-in-a-string-iii
- https://leetcode-cn.com/problems/reverse-words-in-a-string-iii
题目描述
给定一个字符串,你需要反转字符串中每个单词的字符顺序,同时仍保留空格和单词的初始顺序。
示例 1:
输入: "Let's take LeetCode contest" 输出: "s'teL ekat edoCteeL tsetnoc"
注意:在字符串中,每个单词由单个空格分隔,并且字符串中不会有任何额外的空格。
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |