557. Reverse Words in a String III

栏目: Java · 发布时间: 6年前

内容简介: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"

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.

难度: easy

题目:给定字符串,返转字符串中的单词,保留空格和单词顺序。

思路:遍历,返转

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();
    }
}

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

注意力商人

注意力商人

吳修銘 / 黃庭敏 / 天下雜誌 / 2018-4-2 / NT$650

電子郵件,免費!照片分享,無上限! 你是否想過,隨手可得的免費內容、便利的免費服務,到底都是誰在付費? 如果商品免費,那你就不是消費者,而是商品! 你我可能都不知不覺地把自己賣給了注意力商人! 「『媒體轉型、網路演化與資訊浪潮」此一主題最具洞見的作者。』──黃哲斌(資深媒體人) 「這是少有的關注產業發展的傳播史,對現在或未來的『注意力產業』」中人來說,不可不讀。」──......一起来看看 《注意力商人》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具