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

Valid Parentheses

时间:2014-11-18 11:54:07      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:algorithm   leetcode   

题目描述:

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.

代码:

stack<char> char_stack;
    for(int i = 0;i < s.length();i++)
    {
        if(s[i] == '(' || s[i] == '{' || s[i] == '[')
            char_stack.push(s[i]);
        else
        {
            if(char_stack.empty())
                return false;
            char top = char_stack.top();
            char_stack.pop();
            if(s[i] == ')' && top == '(')
                continue;
            else if(s[i] == '}' && top == '{')
                continue;
            else if(s[i] == ']' && top == '[')
                continue;
            else
                return false;
        }
    }
    if(char_stack.empty())
        return true;


Valid Parentheses

标签:algorithm   leetcode   

原文地址:http://blog.csdn.net/yao_wust/article/details/41243231

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