1. package com.lw.leet1;
  2.  
  3. import java.util.Stack;
  4.  
  5. /**
  6. * @ClassName:Solution
  7. * @Description:
  8. * Reverse Words in a String
  9. * Total Accepted: 26194 Total Submissions: 187094 My Submissions
  10. * Given an input string, reverse the string word by word.
  11. *
  12. * For example
  13. * Given s = "the sky is blue"
  14. * return "blue is sky the".
  15. *
  16. * Clarification:
  17. * What constitutes a word?
  18. * A sequence of non-space characters constitutes a word.
  19. * Could the input string contain leading or trailing spaces?
  20. * Yes. However, your reversed string should not contain leading or trailing spaces.
  21. * How about multiple spaces between two words?
  22. * Reduce them to a single space in the reversed string.
  23. *
  24. * @Author LiuWei
  25. * @Date 2014年8月15日下午7:48:48
  26. * @Mail nashiyue1314@163.com
  27. */
  28. public class Solution {
  29.  
  30. public String reverseWords(String word){
  31. Stack<String> sstack = new Stack<String>();
  32. int flag = 0;
  33. for(int i= 0; i<word.length(); i++){
  34. while(i<word.length() && word.charAt(i)==' '){
  35. i++;
  36. }
  37. flag = i;
  38. while(i<word.length() && word.charAt(i)!=' '){
  39. i++;
  40. }
  41. if(flag != i){
  42. sstack.push(word.substring(flag, i));
  43. }
  44. }
  45. String res = "";
  46. while(!sstack.isEmpty()){
  47. res += sstack.pop()+" ";
  48. }
  49. // The input string which is made up of space
  50. if(res.length()==0){
  51. return "";
  52. }
  53. return res.substring(0, res.length()-1);
  54. }
  55.  
  56. public String reverseWords2(String word){
  57. String res ="";
  58. int flag = 0;
  59. for(int i= 0; i<word.length(); i++){
  60. while(i<word.length() && word.charAt(i)==' '){
  61. i++;
  62. }
  63. flag = i;
  64. while(i<word.length() && word.charAt(i)!=' '){
  65. i++;
  66. }
  67. if(flag != i){
  68. res = word.substring(flag, i)+" "+res;
  69. }
  70. }
  71. // The input string which is made up of space
  72. if(res.length()==0){
  73. return "";
  74. }
  75. return res.substring(0, res.length()-1);
  76. }
  77.  
  78. public static void main(String[] args){
  79. Solution s = new Solution();
  80. System.out.println(s.reverseWords2(" hello world "));
  81. }
  82. }

LeetCode-Reverse Words in a String[AC源码]的更多相关文章

  1. LeetCode: Reverse Words in a String:Evaluate Reverse Polish Notation

    LeetCode: Reverse Words in a String:Evaluate Reverse Polish Notation Evaluate the value of an arithm ...

  2. LeetCode Reverse Words in a String II

    原题链接在这里:https://leetcode.com/problems/reverse-words-in-a-string-ii/ 题目: Given an input string, rever ...

  3. [LeetCode] Reverse Vowels of a String 翻转字符串中的元音字母

    Write a function that takes a string as input and reverse only the vowels of a string. Example 1:Giv ...

  4. [LeetCode] Reverse Words in a String II 翻转字符串中的单词之二

    Given an input string, reverse the string word by word. A word is defined as a sequence of non-space ...

  5. [LeetCode] Reverse Words in a String 翻转字符串中的单词

    Given an input string, reverse the string word by word. For example, Given s = "the sky is blue ...

  6. [LeetCode] Reverse Words in a String III 翻转字符串中的单词之三

    Given a string, you need to reverse the order of characters in each word within a sentence while sti ...

  7. LeetCode: Reverse Words in a String 解题报告

    Reverse Words in a String Given an input string, reverse the string word by word. For example,Given ...

  8. java.lang.String 类源码解读

    String类定义实现了java.io.Serializable, Comparable<String>, CharSequence 三个接口:并且为final修饰. public fin ...

  9. 翻String.Format源码发现的新东西:StringBuilderCache

    起因: 记不清楚今天是为毛点想F12看String.Format的实现源码了,反正就看到了下图的鸟东西: 瞬间石化有没有,StringBuilder还能这么获取? 研究StringBuilderCac ...

随机推荐

  1. Yii2 UploadedFile上传文件

    通过 UploadFile::getInstance($model, $attribute); UploadFile::getInstances($model, $attribute); Upload ...

  2. 附加题程序找bug

    private: void Resize(int sz){ ){ return; } if(maxSize != sz){ T *arr = new T[sz]; if(arr == NULL){ r ...

  3. 《C》变量

    变量的存储方式和生存周期

  4. c# 免费版pdf转word尝试

    链接:https://pan.baidu.com/s/1Dwuezo6YGe9CdlSyrwQyNg 密码:c81a 1.安装此程序 2.在安装文件的bin下拷贝dll: 3.代码引用 private ...

  5. 2018软工实践—Alpha冲刺(9)

    队名 火箭少男100 组长博客 林燊大哥 作业博客 Alpha 冲鸭鸭鸭鸭鸭鸭鸭鸭鸭! 成员冲刺阶段情况 林燊(组长) 过去两天完成了哪些任务 协调各成员之间的工作 多次测试软件运行 学习OPENMP ...

  6. OOP 学习笔记汇总

    1.1 引用 1.2 const关键字 1.3 动态内存分配 1.4 内联函数和重载函数函数参数缺省值 1.5 类和对象的基本概念与用法1 2.1 类和对象的基本概念2

  7. 软工实践-Alpha 冲刺 (7/10)

    队名:起床一起肝活队 组长博客:博客链接 作业博客:班级博客本次作业的链接 组员情况 组员1(队长):白晨曦 过去两天完成了哪些任务 描述: 已经解决登录注册等基本功能的界面. 完成非功能的主界面制作 ...

  8. Alpha 冲刺(9/10)

    队名 火箭少男100 组长博客 林燊大哥 作业博客 Alpha 冲鸭鸭鸭鸭鸭鸭鸭鸭鸭! 成员冲刺阶段情况 林燊(组长) 过去两天完成了哪些任务 协调各成员之间的工作 多次测试软件运行 学习OPENMP ...

  9. WPF和Expression Blend开发实例:Loading动画

    今天来点实际的,项目中可以真实使用的,一个Loading的动画,最后封装成一个控件,可以直接使用在项目中,先上图: 整个设计比较简单,就是在界面上画18个Path,然后通过动画改变OpacityMas ...

  10. Markdown使用github风格时报TLS错误解决办法

    https://docs.microsoft.com/en-us/officeonlineserver/enable-tls-1-1-and-tls-1-2-support-in-office-onl ...