722. Remove Comments

Posted jtechroad

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了722. Remove Comments相关的知识,希望对你有一定的参考价值。

class Solution {
public:
    vector<string> removeComments(vector<string>& source) {
        vector<string> res;
        string ln;
        int state = 0;
        for (const auto & line : source) {
            for (int i = 0, ll = line.length(); i < ll; i++) {
                if (state == 0) {
                    if (i < ll-1) {
                        if (line[i] == / && line[i+1] == /)
                            break;  // // comment, skip line
                        else if (line[i] == / && line[i+1] == *) {
                            state = 1;
                            i += 1;
                            continue;
                        }
                    }
                    ln.push_back(line[i]);
                }
                else if (state == 1) {  // inside /*
                    if (i < ll-1 && line[i] == * && line[i+1] == /) {
                        state = 0;
                        i += 1;
                        continue;
                    }
                }
            }
            if (state == 0 && ln.length() > 0) {
                res.push_back(ln);
                ln = "";
            }
        }
        if (ln.length() > 0)
            res.push_back(ln);
        return res;
    }
};

 

以上是关于722. Remove Comments的主要内容,如果未能解决你的问题,请参考以下文章

sql remove_comments.sql

[LeetCode] Remove Comments

[LeetCode] Remove Comments 移除评论

调用 .remove(fragment) 后片段未被删除

隐藏后,从URL显示WordPress菜单页面

FragmentTransaction.remove 没有效果