1003. Check If Word Is Valid After Substitutions Medium

Posted tornado549

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1003. Check If Word Is Valid After Substitutions Medium相关的知识,希望对你有一定的参考价值。

参考:https://leetcode.com/problems/check-if-word-is-valid-after-substitutions/discuss/247626/JavaPythonC%2B%2B-Stack-Solution-O(N

方法1:使用c++自带的find函数和erase函数

class Solution {
public:
    bool isValid(string S) {
        while(!S.empty())
        {
            auto pos = S.find("abc");
            if(pos != string::npos)
                S.erase(pos,3);
            else
                return false;
        }
        return true;
    }
};

技术图片

方法2:使用栈的思想

遇到 ‘c‘ 则检查栈内是否存在‘a‘, ‘b‘,并且要严格按照顺序排列

不合法则直接return false

若for循环终止后仍然未执行return,需要检查栈的大小,解决"aabcabc"这一类字符串

class Solution {
public:
    bool isValid(string S) {
        vector<char> stack;
        int n;
        for(char c : S)
        {
            n = stack.size();
            if(c == c)
            {
                if(n < 2 || stack[n-1] != b || stack[n-2] != a)
                    return false;
                stack.pop_back();
                stack.pop_back();
            }
            else
                stack.push_back(c);
        }
        return stack.size() == 0;
    }
};

技术图片

 

以上是关于1003. Check If Word Is Valid After Substitutions Medium的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode-1003 Check If Word Is Valid After Substitutions(检查替换后的词是否有效)

Check if a string is NULL or EMPTY using PowerShell

Check if a configuration profile is installed on iOS

VA01信贷使用

VA01信贷使用

[Algo] 306. Check If Linked List Is Palindrome