Leetcode 22 括号匹配问题-用balance判断

思路:

递归生成所有可能在,为了节约时间,从中加入balance,当balance为负数一定不合法,就不递归了

当缺少 ( 就加入  ( ,多了就不递归了

当缺少 ) 就加入  ) ,多了就不递归了

当且仅当 ( 和 )的个数等于n ,且balance

# include<iostream>
# include<vector>
# include<string>
# include<algorithm>
# include<math.h>
# include<climits>
# include<stack>
using namespace std;
void generate(int& n, int &balance, int &left,int &right,string &pushstr,vector<string> &res) {
	if (balance < 0)return;
	if (left > n) 
		return;
	if (right > n)
		return;
	if (left == n && right == n) {
		res.push_back(pushstr);
		return;
	}
	for (int i = 0; i < 2; i++) {
		if (!i) {//第一次
			if (left < n ) {
				left++;
				pushstr += '(';//( 优先生成
				balance++;
				generate(n, balance, left, right, pushstr, res);
				pushstr.pop_back();//将刚才的 ( 消掉
				left--;
				balance--;
			}
		}
		else {
			if (right < n) {
				right++;
				pushstr += ')';
				balance--;
				generate(n, balance, left, right, pushstr, res);
				pushstr.pop_back();//将刚才的 ( 消掉
				right--;
				balance++;
			}
		}
	}
}
vector<string> generateParenthesis(int n) {
	vector<string> res;
	int left = 0,right=0;
	string pushstr = "";
	int balance = 0;
	generate(n, balance, left,right,pushstr, res);
	for (int i = 0; i < res.size(); i++)
		cout << res[i] << endl;
	return res;
}
int main(void) {
	generateParenthesis(3);
	system("pause");
	return  0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值