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

leetcode第20题--Valid Parentheses

时间:2014-10-19 01:16:41      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   for   sp   数据   

Problem:

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.

判断输入的括号是不是合法。这题在大二的时候就遇到过了。想不到我的记性这么好。因为当时我什么都不懂,刚学数据结构,然后有个ACMer是助教,他给我讲解了这题。然后我就一直都记得了。也不知道那个师兄现在在哪里牛逼。

回到题目,就是用栈实现。

class Solution {
    private:
    char anti(char c)
    {
        if (c == ])
            return [;
        if (c == ))
            return (;
        if (c == })
            return {;
    }
public:
    bool isValid(string s) {
        int len = s.size();
        if (len%2)
        { return false;}
        if(s.size() == 0 || s[0] == ) || s[0] == ] || s[0] == })
            return false;
        stack<char> st;
        for (int i = 0; i < len; i++)
        {
            if (s[i] == ( || s[i] == { || s[i] == [)
                st.push(s[i]);
            else
                if (st.top() == anti(s[i]))
                    st.pop();
                else
                    return false;
        }
        if (st.empty())
            return true;
        else
            return false;
    }
};

代码写得有点挫,大概就是这个思路,然后Accept了

leetcode第20题--Valid Parentheses

标签:style   blog   color   io   os   ar   for   sp   数据   

原文地址:http://www.cnblogs.com/higerzhang/p/4034105.html

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