Leetcode 301. Remove Invalid Parentheses

本文详细解析了LeetCode上一道经典题目“移除无效括号”的算法实现。通过使用BFS算法和辅助数据结构如队列和无序集合,文章展示了如何找到并移除最小数量的无效括号,使输入字符串变为有效。代码中包含了完整的C++实现,包括判断字符串是否有效的函数。
摘要由CSDN通过智能技术生成

https://leetcode.com/problems/remove-invalid-parentheses/description/
Remove the minimum number of invalid parentheses in order to make the input string valid. Return all possible results.

又是一道经典题。
算法用BFS,
data structure:queue,unordered_set

class Solution {
public:
    vector<string> removeInvalidParentheses(string s) {
        vector<string>res;
        if(s.size() < 1)
        {
            res.push_back(s);
            return res;
        }
        
        queue<string>q;
        unordered_set<string>tovisit;
        q.push(s);
        tovisit.insert(s);
        bool found = false;
        while(!q.empty())
        {
            string cur = q.front();
            q.pop();
            if(isvalid(cur))
            {
                res.push_back(cur);
                found = true;
            }
            //the found is to avoid further search once found since the goal is to remove the minimun invalid
            //use "continue" instead of "break" is to search the same level since the goal is to dump all possible result
            if(found == true)
            {              
                continue;
            }
            
            for(int i = 0; i < cur.size(); i++)
            {
                if(cur[i] != '(' && cur[i] != ')') continue;
                string newstr = cur.substr(0,i) + cur.substr(i+1);
                if(tovisit.find(newstr) == tovisit.end())
                {
                    tovisit.insert(newstr);
                    q.push(newstr);
                }
            }
                
        }
        
        return res;
    }
    
    bool isvalid(string str)
    {
        int count = 0;
        for(auto c : str)
        {
            if(c == '(')
            {
                count ++;
            }
            else if(c == ')')
            {
                if(count == 0)
                {
                    return false;
                }
                count --;
            }
        }
        
        return count == 0;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值