博客
关于我
1249. Minimum Remove to Make Valid Parentheses
阅读量:270 次
发布时间:2019-03-01

本文共 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:

  • It is the empty string, contains only lowercase characters, or
  • It can be written as AB (A concatenated with B), where A and B are valid strings, or
  • It can be written as (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次,我们会思考寻求O(nlogn)及以下的算法,这里介绍O(n)的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/

你可能感兴趣的文章
python之面向对象编程
查看>>
Docker Compose 搭建 Redis Cluster 集群环境
查看>>
python之字典类型内置方法
查看>>
python之集合类型内置方法
查看>>
编程与编程语言分类
查看>>
python之三元表达式、生成式、生成器表达式
查看>>
python之pickle模块
查看>>
IDEA-运行无法读取webapp下静态文件
查看>>
【高速接口-RapidIO】5、Xilinx RapidIO核例子工程源码分析
查看>>
设计模式(二)—工厂模式(简单工厂模式)(附代码)
查看>>
Cube-SLAM编译遇到的问题
查看>>
视觉SLAML1作业
查看>>
【转载】常见HTTP状态码
查看>>
一只蒟蒻的计算机网络学习【一】
查看>>
【一只蒟蒻的刷题历程】 【PAT】 A1070 月饼 (贪心)
查看>>
win10连接上wifi显示无internet,并且wlan的属性都点不了,可尝试的解决方法(亲测有用!!!)
查看>>
【一只蒟蒻的刷题历程】 【HDU-1276】 士兵队列训练问题
查看>>
【 UVA - 572 】 Oil Deposits (DFS水题)
查看>>
【 UVA - 673 】Parentheses Balance 平衡的括号 (非常容易理解!!)
查看>>
【Linux】 Linux实操 --- 开机、重启和用户登录注销
查看>>