栈的应用题(1)

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<char>的数据结构,stk.push(elem),stk.pop(),stk.top等用法。

2)栈为空,输入为左括弧,输入为右括弧,分不同情况讨论,入栈,出栈,退出,continue等


class Solution {

public:
    bool correct_pair(char elem,char elem2)
    {
        if(((elem    ==  '(')&&(elem2    ==  ')'))||((elem    ==  '[')&&(elem2    ==  ']'))||((elem    ==  '{')&&(elem2    ==  '}')))
            return  true;
        else
            return  false;
    }
    bool isbegin(char   s)
    {
        if((s    ==  '(')||(s    ==  '{')||(s    ==  '['))
            return  true;
        else
            return  false;
    }
    bool is_end(char   s)
    {
        if((s    ==  ')')||(s    ==  '}')||(s    ==  ']'))
            return  true;
        else
            return  false;
    }
    bool isValid(string s) {
        int n   =   s.size();
        stack<char> stk;
        if(0    ==  n)
        {
            return  true;
        }
        for(int i   =   0;i <   n;i++)
        {
            if(0    ==  stk.size())
            {
                stk.push(s[i]);
                continue;
            }
            if(isbegin(s[i]))
            {
                stk.push(s[i]);
            }
            else if(is_end(s[i]))
            {
                if(correct_pair(stk.top(),s[i]))
                {
                    stk.pop();
                    continue;
                    //s.push(s[i]);
                }
                else
                    return  false;
            }
        }
        if(0    ==  stk.size())
            return true;
        else
            return  false;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值