LeetCode 557 Reverse Words in a String III(反转字符串中的单词3)

Posted nomasp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 557 Reverse Words in a String III(反转字符串中的单词3)相关的知识,希望对你有一定的参考价值。

翻译

原文

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.

代码

public String reverseWords(String s) 
        String[] strings = s.split(" ");
        StringBuilder stringBuilder = new StringBuilder();
        StringBuffer stringBuffer;
        for (int i = 0; i < strings.length; i++) 
            stringBuffer = new StringBuffer(strings[i]);
            stringBuilder.append(stringBuffer.reverse().toString() + " ");
        
        return stringBuilder.toString().substring(0, stringBuilder.length() - 1);
    

以上是关于LeetCode 557 Reverse Words in a String III(反转字符串中的单词3)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode - 557. Reverse Words in a String III

LeetCode 557. Reverse Words in a String III

leetcode-557-Reverse Words in a String III

LeetCode 557. Reverse Words in a String III

Leetcode557 Reverse Words in a String III Java实现

leetcode No557. Reverse Words in a String III