本文共 1599 字,大约阅读时间需要 5 分钟。
题目:
Given a string s of '('
, ')'
and lowercase English characters.
Your task is to remove the minimum number of parentheses ( '('
or ')'
, in any positions ) so that the resulting parentheses string is valid and return any valid string.
Formally, a parentheses string is valid if and only if:
AB
(A
concatenated with B
), where A
and B
are valid strings, or(A)
, where A
is a valid string.
Example 1:
Input: s = "lee(t(c)o)de)"Output: "lee(t(c)o)de"Explanation: "lee(t(co)de)" , "lee(t(c)ode)" would also be accepted.
Example 2:
Input: s = "a)b(c)d"Output: "ab(c)d"
Example 3:
Input: s = "))(("Output: ""Explanation: An empty string is also valid.
Example 4:
Input: s = "(a(b(c)d)"Output: "a(b(c)d)"
Constraints:
1 <= s.length <= 10^5
s[i]
is one of '('
, ')'
and lowercase English letters.
思路:
这种左右括号的自然会想到用stack来检查是否配对,同时数量级较大,为10的5次,我们会思考寻求及以下的算法,这里介绍
的two/three pass算法。首先建立用来检验括号匹配的stack,然后遍历字符串,如果有 ( 则将对应index压入栈,如果有 ) 则判断stack是否为空,不为空则意味着有对应的 ( ,可以pop,否则当前括号为无法匹配的括号,将字符串的这个位置改成'#'用来表示以后我们将会不需要这个位置。这基本解决了右括号无人匹配的情况,那么看例子三中有"))((",这里会有左括号无人匹配,并且一直在栈内未被消除,因此我们在遍历完字符串后,遍历栈,将栈中index在字符串中的内容也设为井号。最终拿一个新的字符串去承载原字符串中非井号的所有字符即可,这个新字符串就是答案。
代码:
class Solution {
public: string minRemoveToMakeValid(string s) { stack<int>st; for(int i=0;i<s.length();++i) { if(s[i]=='(') st.push(i); else if(s[i]==')') { if(st.empty()) s[i]='#'; else st.pop(); } } while(!st.empty()){ s[st.top()]='#'; st.pop(); } string ans=""; for(int i=0;i<s.length();++i){ if(s[i]!='#') ans.push_back(s[i]); } return ans; } };转载地址:http://voqo.baihongyu.com/