301. Remove Invalid Parentheses

本文介绍了一种去除输入字符串中最小数量的无效括号,使其成为有效字符串的算法。通过队列和哈希集进行状态搜索,确保返回所有可能的结果。文章提供了详细的代码实现,包括如何验证括号的有效性和如何通过剪枝优化搜索过程。
摘要由CSDN通过智能技术生成

Remove the minimum number of invalid parentheses in order to make the input string valid. Return all possible results.

Note: The input string may contain letters other than the parentheses ( and ).

Examples:

"()())()" -> ["()()()", "(())()"]
"(a)())()" -> ["(a)()()", "(a())()"]
")(" -> [""]

public class Solution {
    public static boolean validP(String s){
		if(s == null || s.length() == 0){
			return true;
		}
		if(s.startsWith(")")){
			return false;
		}
		int count = 0;
		for(int i=0; i<s.length(); i++){
			if(s.charAt(i) == '('){
				count++;
			}
			if(s.charAt(i) == ')'){
				if(count == 0){
					return false;
				}
				count--;
			}
		}
		return count == 0;
	}
	
	public List<String> removeInvalidParentheses(String s) {
		List<String> result = new ArrayList<String>();
		
		Queue<String> queue = new LinkedList<String>();
		HashSet<String> map = new HashSet<String>();
		queue.offer(s);
		map.add(s);
		boolean found = false;

		while(!queue.isEmpty()){
		    int left = 0;
		    int right = 0;
			s = queue.peek();
			queue.poll();
			if(validP(s)){
				result.add(s);
				found = true;
			}
			
			if(found){
				continue;
			}
			
			for(int i=0; i<s.length(); i++){
			    if(s.charAt(i) == '('){
			        left++;
			    }
			    if(s.charAt(i) == ')'){
			        right++;
			    }
			}
			
			for(int i=0; i<s.length(); i++){
			    char current =s.charAt(i);
				if((current =='(' && left >= right) || (current==')' && right > left)){
					String n = s.substring(0, i) + s.substring(i + 1, s.length());
					if(!map.contains(n)){//剪枝:算好左右括号的数量,不用减少的那一个。
						queue.offer(n);
						map.add(n);
					}
				}
			}
		}
		return result;
    }
}


转载于:https://my.oschina.net/u/205577/blog/1505003

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值