[Leetcode Solution] Reverse Words in a String

The problem description is simple enough.

For example, "the sky is blue" => "blue is sky the".

However, this problem is not easy as it seems. We have to deal with the leading and trailing spaces, also the duplicate spaces between to "words" - any visible characters except space could constitute words, such as "^_^" , "<><", "What?!" etc.


One of the tricky way to tackle the problem is use "split" and "join" with Python.

' '.join(raw_input().split(" ")[::-1])


Python is fantastic, but it can hardly satisfy the interviewer. 


Usually, we are asked to use a "real programming language" like C++ or Java in the interview. Is there a simple way like the python code above?

The answer is yes.

As we know, Implementing your own trim/strip/join is so annoying, and can bring many potential bugs in your code. But, getline helps you tokenize a string easily with a single delimiter.

class Solution {
public:
    void reverseWords(string &s)
    {
        string token;
        istringstream iss(s);
        s = "";
        while (getline(iss, token, ' ')) {
            if (token.empty()) {
                continue;
            }
            s = token + (s.empty()? "":" ") + s;
        }
    }
};

Oh, well. It is tricky, too. Because it rely too much on build-in functions of C++. But it is much better. :)

If we are forced to write a full version in-place "reverseWords" algorithm all ourselves, what should we do?


class Solution {
public:
    void reverseWords(string &s);
private:
    void trim(string &s);
};

void Solution::reverseWords(string &s) {
    trim(s);
    reverse(s. begin(), s.end());
    size_t len = s.length();
    for (size_t i = 0, pre = 0; i <= len; i++) {
        if (isspace(s[i]) || i == len) {
            reverse(s.begin() + pre, s.begin() + i);
            pre = i + 1;
        }
    }
}

void Solution::trim(string &s) {
    size_t len = s.length();
    int p = 0, token = 0;
    for (size_t i = 0; i < len; i++) {
        if (isspace(s[i])) {
            token = 0;
            continue;
        }
        if (!token && p) {
            s[p++] = ' ';
        }
        s[p++] = s[i];
        token++;
    }
    s.erase(p, len);
}

The code is neat because it obeys the "Linus' indentation rule" and simple enough for interviewer to understand quickly.

Linus' Indentation Rule

The answer to that is that if you need more than 3 levels of indentation, you're screwed  anyway, and should fix your program.


EXTENSION:

What should we do if there are multiple delimiters? For example, "The#world*is&gray?"

> boost::split(vector, string, boost::is_any_of("#*&"));

> strpbrk: http://www.cplusplus.com/reference/cstring/strpbrk/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值