摘要: public class Solution { public static List generateParenthesis(int n) { List res=new ArrayList(); func(0,0,"",res,n); return res; } public static void fun... 阅读全文
posted @ 2016-04-26 10:10 阿怪123 阅读(114) 评论(0) 推荐(0)