码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode-Reverse Words in a String

时间:2018-04-29 11:46:45      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:span   stack   etc   nta   lin   color   sky   sed   class   


Given an input string, reverse the string word by word.

Example:  

Input: "the sky is blue",
Output: "blue is sky the".

Notes:

  • A word is defined as a sequence of non-space characters.
  • Input string may contain leading or trailing spaces. However, your reversed string should not contain leading or trailing spaces.
  • You need to reduce multiple spaces between two words to a single space in the reversed string.

Follow up: For C programmers, try to solve it in-place in O(1) space.

 

 

用 stack 做

public class Solution {
    public String reverseWords(String s) {
        if(s == null || s.length() == 0){
            return s;
        }
        Stack<String> stack = new Stack<>();
        StringBuilder sb = new StringBuilder();
        for(int i=0; i<s.length(); i++){
            char c = s.charAt(i);
            if(c != ‘ ‘){
                sb.append(c);
            }
            if((i == s.length() - 1 || c == ‘ ‘) && sb.length() != 0){
                stack.push(sb.toString());
                sb.delete(0,sb.length());
            }
        }
        int count = 0;
        while(!stack.isEmpty()){
            if(count == stack.size()-1){
                sb.append(stack.pop());
            }
            else{
                sb.append(stack.pop()+" ");
            }
        }
        return sb.toString();
    }
}

 

LeetCode-Reverse Words in a String

标签:span   stack   etc   nta   lin   color   sky   sed   class   

原文地址:https://www.cnblogs.com/incrediblechangshuo/p/8970340.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!