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

leetcode-Reverse Words in a String

时间:2017-04-25 11:35:50      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:nowrap   ack   turn   order   ++i   space   public   art   ted   

Reverse Words in a String

 Total Accepted: 15012 Total Submissions: 108513My Submissions

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

For example,
Given s = "the sky is blue",
return "blue is sky the".

click to show clarification.

Have you been asked this question in an interview? 


此题要翻转一个字符串中的单词,属于比較简单的字符串处理题。



C++:
直接扫描字符串把遇到的单词插入到deque的前面。扫描完把deque容器内的单词拼起来就可以。

class Solution {
public:
    void reverseWords(string &s) {
        deque<string> ds;
        int b, i(0), len(s.size());
        while (i < len) {
            while (i<len && s[i]==‘ ‘) ++i;
            if (i == len) break;
            b = i;
            while (i<len && s[i]!=‘ ‘) ++i;
            ds.push_front(s.substr(b, i-b));
        }
        s = "";
        if (ds.empty()) return;
        s += ds[0];
        for (i=1; i<ds.size(); ++i) s += " " + ds[i];
        
    }
};
可是假设加上限制呢?比方不能利用额外线性空间复杂度,又该怎样解呢?临时还没想到。

Python:
Python处理更简单了。三行代码就搞定了。

class Solution:
    # @param s, a string
    # @return a string
    def reverseWords(self, s):
        ss = s.split()
        ss.reverse()
        return " ".join(ss)
        


leetcode-Reverse Words in a String

标签:nowrap   ack   turn   order   ++i   space   public   art   ted   

原文地址:http://www.cnblogs.com/mthoutai/p/6760771.html

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