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

#leetcode刷题之路20-有效的括号

时间:2019-03-13 19:47:53      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:style   push   splay   val   har   mes   lse   controls   one   

#include <iostream>
#include <string>
#include <stack>
using namespace std;

bool isValid(string s) {
    stack<char> a;
    int len=s.size();
    if(len==1) return 0;
    if(len==0) return 1;
    for(int i=0;i<len;i++)
    {
        switch (s[i])
        {
            case ):
            {
                if((a.size()!=0)&&a.top()==() a.pop();
                else return false;
                break;
            }
            case }:
            {
                if((a.size()!=0)&&a.top()=={) a.pop();
                else return false;
                break;
            }
            case ]:
            {
                if((a.size()!=0)&&a.top()==[) a.pop();
                else return false;
                break;
            }
            default:a.push(s[i]);
                break;
        }
    }
    cout<<a.size()<<endl;
    if(a.size()==0) return true;
    else return false;
    }

int main() {
    string s="){";
    std::cout << isValid(s) << std::endl;
    return 0;
}

 

#leetcode刷题之路20-有效的括号

标签:style   push   splay   val   har   mes   lse   controls   one   

原文地址:https://www.cnblogs.com/biat/p/10525081.html

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