题解 | #括号匹配深度#

括号匹配深度

https://www.nowcoder.com/practice/a2d5b1875bb0408384278f40d1f236c9

//https://www.nowcoder.com/practice/a2d5b1875bb0408384278f40d1f236c9?tpId=90&tqId=30808&tPage=2&rp=2&ru=%2Fta%2F2018test&qru=%2Fta%2F2018test%2Fquestion-ranking&tab=answerKey

#include <iostream>
#include <stack>
#include <algorithm>

using namespace std;

int main() {
    string s;
    while (cin >> s) {
        stack<char> st;
        int countn = 0;

        for(int i = 0;i<s.size();i++){
            if(s[i]=='(')
                st.push(s[i]);
            else{
                int tem = st.size();
                countn = max(countn, tem);
                st.pop();
            }
        }

        cout << countn << endl;
    }
}

全部评论

相关推荐

把球:这个听过,你加了就会发现是字节的hr
点赞 评论 收藏
分享
喜欢走神的孤勇者练习时长两年半:爱华,信华,等华,黑华
点赞 评论 收藏
分享
昨天 17:48
中山大学 C++
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务