427 - 生成括号

2017.10.20

f(n)的值就是在f(n-1)的基础上,遇到左括号就加一个(),然后再在开头加一个()

public class Solution {
    /*
     * @param n: n pairs
     * @return: All combinations of well-formed parentheses
     */
 	public List<String> generateParenthesis(int n){
		Set<String> set = generate(n);
		List<String> res = new LinkedList<>();
		for(String s :set){
			res.add(s);
		}
		return res;
	}
	public Set<String> generate(int n){
	        // write your code here
		Set<String> set = new HashSet<String>();
		set.add("");
		if(n == 0){
			return set;
		}
		for(int i = 1; i <= n; i++){
			Set<String> setTmp = new HashSet<String>();
			for(String s : set){
				setTmp.add("()" + s);
				for(int j = 0; j < s.length(); j++){
					if(Character.toString(s.charAt(j)).equals("(")){
						String newString = s.substring(0, j+1) + "()" + s.substring(j+1);
						setTmp.add(newString);
					}
				}
			}
			System.out.println("当n为" + i + "时,setTmp里的内容有:");
			for(String s : setTmp){
				System.out.print(s + ";");
			}
			System.out.println();
			set.clear();
			set.addAll(setTmp);
		}
		return set;
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值