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

LeetCode 20. Valid Parentheses

时间:2018-08-12 14:19:46      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:style   class   false   bool   ack   ||   ring   ret   else   

栈的教科书式套路。

class Solution {
public:
    bool isValid(string s) {
        stack<char> a;
        int n=s.length();
        for (int i=0;i<n;i++){
            if (s[i]==(||s[i]==[||s[i]=={) a.push(s[i]);
            else {
                if (a.empty()) return false;
                char t=a.top();
                a.pop();
                if (s[i]==}&&t!={) return false;
                if (s[i]==)&&t!=() return false;
                if (s[i]==]&&t!=[) return false;  
            }
        }
        if (a.empty()) return true;
        else return false;
        
    }
};

 

LeetCode 20. Valid Parentheses

标签:style   class   false   bool   ack   ||   ring   ret   else   

原文地址:https://www.cnblogs.com/travelller/p/9462278.html

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