题解 | #括号匹配深度# --栈

括号匹配深度

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

#include <iostream>
#include <algorithm>
#include <stack>
using namespace std;

string str;
stack<int> st;
int manL = 0;  // 栈的最大深度就是答案
int main() {
    cin >> str;
    int n = str.size();
    for(int i = 0; i < n; i ++){
        if(str[i] == '('){
            st.push(i);
            manL = max(manL, (int)st.size());
        }else{
            st.pop();
        }
    }
    cout << manL << endl;

    return 0;
}
// 64 位输出请用 printf("%lld")

#每日一题#
全部评论

相关推荐

头像
10-09 19:35
门头沟学院 Java
洛必不可达:java的竞争激烈程度是其他任何岗位的10到20倍
点赞 评论 收藏
分享
offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务