Aether·Zhang
Aether·Zhang
全部文章
分类
未归档(9)
题解(20)
归档
标签
去牛客网
登录
/
注册
Aether·Zhang的博客
This too shall pass.
全部文章
(共2篇)
LeetCode 1614. 括号的最大嵌套深度
LeetCode 1614.括号的最大嵌套深度 class Solution { public: int maxDepth(const string& s) { int m = 0; std::stack<char> st; ...
C++
栈
2022-02-22
0
1022
NC52.有效括号序列
NC52.有效括号序列 class Solution { public: /** * * @param s string字符串 * @return bool布尔型 */ bool isValid(const string& s) {...
C++
栈
哈希表
2022-02-21
0
977