• Valid Parentheses


    Given a string containing just the characters '('')''{''}''[' and ']', determine if the input string is valid.

    The brackets must close in the correct order, "()" and "()[]{}" are all valid but "(]" and "([)]" are not.

    思路:这道题使用栈作为辅助空间。首先如果遍历到左括号则压入栈中,然后当遍历到")"或者"}"或者"]",则做出判断,如果找到对应的左括号时,将这个左括号出栈。依次类推,三个判断条件,随时判断栈是否为空。最后循环遍历结束后,判断栈是不是为空,如果为空则为真,否则就为假。

    class Solution {
    public:
        bool isValid(string s) {
            stack<char> str;
            int nSize=s.size();
            if(nSize==0)
                return true;
            for(int i=0;i<nSize;i++)
            {
                if(s[i]=='('||s[i]=='['||s[i]=='{')
                    str.push(s[i]);
                else
                {
                    if(s[i]==')')
                    {
                        if(!str.empty()&&str.top()=='(')
                            str.pop();
                        else
                            return false;
                    }
                    if(s[i]==']')
                    {
                        if(!str.empty()&&str.top()=='[')
                            str.pop();
                        else
                            return false;
                    }
                    if(s[i]=='}')
                    {
                        if(!str.empty()&&str.top()=='{')
                            str.pop();
                        else
                            return false;
                    }
                }
            }
            if(str.empty())
                return true;
            else
                return false;
        }
    };
  • 相关阅读:
    [原]Android 开发第一步
    [转]使用Android-Studio 开发Android 程序
    [转]VS2010 常用插件
    [转]FluentData
    BUUCTF-[HCTF 2018]WarmUp
    2019.11.11读书笔记
    2019.11.9读书笔记
    记录一道神仙CTF-wtf.sh-150
    SDOI2018 一轮培训划水祭
    [SHOI2009]会场预约
  • 原文地址:https://www.cnblogs.com/awy-blog/p/3654633.html
Copyright © 2020-2023  润新知