博客
关于我
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标准库源码(一)—— os模块
查看>>
实用软件推荐(一)——自动更换壁纸 (Dynamic theme)
查看>>
从零开始免费搭建自己的博客(七)——迁移 CSDN 博客到个人博客站点
查看>>
RF新手常见问题总结--(基础篇)
查看>>
spring框架读取json文件为字符串 推荐第一种
查看>>
SpringBoot配置文件中的值获取
查看>>
Java实现压缩与解压
查看>>
Mybatis-plus代码生成器模板(MySQL数据库)
查看>>
使用redis管理Mybatis的二级缓存
查看>>
使用redis管理Mybatis-Plus的二级缓存
查看>>
Spring Boot常用的maven依赖
查看>>
Mybatis中的SQL语句等于、不等于和模糊查询的语法
查看>>
用xacro给自己的ROS小车编写模型
查看>>
使用 github 搜索
查看>>
.net core 中使用 EFcore做ORM
查看>>
那些用过一次就不会卸载的软件
查看>>
工具-snipate(截图)
查看>>
java有包名的类访问没有包名的类
查看>>
python中快速删除重复元素
查看>>
修改 pytorch中的model zoo下载后的模型的保存目录
查看>>