string removeOuterParentheses(string S) {
string res;
stack<char> st;
for(char c:S){
if(c==')')
st.pop();
if(!st.empty())
res+=c;
if(c=='(')
st.push('(');
}
return res;
}
1021. 删除最外层的括号/C++
最新推荐文章于 2022-07-20 06:35:20 发布