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.app
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.less
難度: easyui
題目:給定字符串,返轉字符串中的單詞,保留空格和單詞順序。spa
思路:遍歷,返轉code
Runtime: 11 ms, faster than 50.54% of Java online submissions for Reverse Words in a String III.
Memory Usage: 38.7 MB, less than 96.70% of Java online submissions for Reverse Words in a String III.字符串
class Solution { public String reverseWords(String s) { s = " " + s + " "; StringBuilder result = new StringBuilder(); int begin = 0, end = 0; for (int i = 1; i < s.length() - 1; i++) { char c = s.charAt(i); if (c != ' ' && s.charAt(i - 1) == ' ') { begin = i; result.append(s.substring(end + 1, begin)); } if (c != ' ' && s.charAt(i + 1) == ' ') { end = i; for (int j = end; j >= begin; j--) { result.append(s.charAt(j)); } } } return result.toString(); } }