内容简介: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();
}
}
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Adobe Dreamweaver CS5中文版经典教程
Adobe公司 / 陈宗斌 / 人民邮电 / 2011-1 / 45.00元
《Adobe Dreamweaver CS5中文版经典教程》由Adobe公司的专家编写,是AdobeDreamweavelCS5软件的官方指定培训教材。全书共分为17课,每一课先介绍重要的知识点,然后借助具体的示例进行讲解,步骤详细、重点明确,手把手教你如何进行实际操作。全书是一个有机的整体,它涵盖了Dreamweavercs5的基础知识、HTML基础、CSS基础、创建页面布局、使用层叠样式表、使......一起来看看 《Adobe Dreamweaver CS5中文版经典教程》 这本书的介绍吧!