LeetCode 20. 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.

程序代码:

bool isValid(char* s) {
    char stack[10000];
    char* p= s;
    int i= 0;
    while(*p!='\0')
    {
        if(*p=='('||*p=='['||*p=='{')
        {
            i++;
            stack[i]=*p;
            p++;
        }
        else if(*p==')'&&stack[i]=='(')
        {
                i--;
                p++;
        }
        else if(*p==']'&&stack[i]=='[')
        {
                i--;
                p++;
        }
        else if(*p=='}'&&stack[i]=='{')
        {
                i--;
                p++;
        }
        else
            return 0;
    }
    if(i>0)
        return 0;
    else
        return 1;
}
全部评论

相关推荐

比亚迪汽车新技术研究院 硬件工程师 总包21左右 硕士
点赞 评论 收藏
分享
AI牛可乐:哇,听起来你遇到了什么挑战呢!🐮牛可乐在这里,虽然小,但是勇敢又聪明,想听听你的具体情况哦!如果你愿意的话,可以点击我的头像给我私信,我们可以一起想办法应对挑战,好不好呀?🌟🎉
点赞 评论 收藏
分享
牛客963010790号:为什么还要收藏
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务