[LeetCode-Algorithms-20] "Valid Parentheses" (2017.11.1-WEEK9)

题目链接: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.


(1)思路:这和数据结构课本上Stack的括号匹配例题类似,只不过括号的类型有三种。遇到左括号直接入栈,遇到右括号进行匹配,匹配成功的左括号弹出栈,匹配不成功或最后栈不为空返回 false。
(2)代码:
class Solution {
public:
    bool isValid(string s) {
        char* stackBot = (char*) malloc(s.length());
        int i;
        int stacktop = -1;
        for (i = 0; i < s.length(); ++i) {
            if (s[i] == '(' || s[i] == '[' || s[i] == '{') stackBot[++stacktop] = s[i];
            else if ((s[i] == ')' && stackBot[stacktop] == '(') || (s[i] == ']' && stackBot[stacktop] == '[') || (s[i] == '}' && stackBot[stacktop] == '{')) --stacktop;
            else {
             free(stackBot);
             return 0;
            }
        }
        free(stackBot);
        return stacktop == -1;
     }
};
(3)提交结果:

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值