557.Reverse-Words-in-a-String-III
557. Reverse Words in a String III
题目地址
https://leetcode.com/problems/reverse-words-in-a-string-iii/
题目描述
Given a string, you need to reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.
Example 1:
Input: "Let's take LeetCode contest"
Output: "s'teL ekat edoCteeL tsetnoc"
Note: In the string, each word is separated by single space and there will not be any extra space in the string.代码
Approach 1:
public class Solution {
public String reverseWords(String s) {
String words[] = s.split(" ");
StringBuilder res = new StringBuilder();
for (String word: words) {
res.append(new StringBuffer(word).reverse().toString() + " ");
}
return res.toString().trim();
}
}Approach #2 Without using pre-defined split and reverse function
Approach #3 Using StringBuilder and reverse method
Last updated
Was this helpful?