鱼C论坛

 找回密码
 立即注册
查看: 2055|回复: 1

[学习笔记] leetcode 22. Generate Parentheses 谷歌面试题

[复制链接]
发表于 2019-8-17 02:18:14 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 Seawolf 于 2019-8-17 14:21 编辑

这是一道Google的面试题
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.

For example, given n = 3, a solution set is:

[
  "((()))",
  "(()())",
  "(())()",
  "()(())",
  "()()()"
]

首先想到的是用hashset 来解决这个问题
import java.util.*;

public class Solution {
        
        HashSet<String> solutionHashSet;
        
        public List<String> generateParenthesis(int n){
                
                solutionHashSet = new HashSet<>();
                
                generateParenthesis("", n, n);
                
                Object[] o = solutionHashSet.toArray();
                List solutionSet = new ArrayList();
                
                for(int i = 0; i< o.length; i++) {
                        
                        solutionSet.add(o[i]);
                }
                
                return solutionSet;
        }
        
        public void generateParenthesis(String s, int o, int c) {
                
                if(o == 0 && c == 0) {
                        
                        solutionHashSet.add(s);
                        return;
                }
                
                if(o == 0) {
                        
                        generateParenthesis(s+ ")", o , c-1);
                }
                
                if( c< 0 || o < 0 || o > c) {
                        
                        return;
                }
                
                if(c == 0) {
                        
                        generateParenthesis(s+ "(", o -1 , c);
                }
                
                if(o < c) {
                        
                        generateParenthesis(s+ "(", o -1 , c);
                        generateParenthesis(s+ ")", o , c-1);
                }
                
        }

}

但是这个code的efficiency 太差了,需要改进

68357654_718373608633570_1757655094611935232_n.png
import java.util.*;

class Solution {

    
    public void dfs(int left, int right, String str, ArrayList array) {
            
            if(left == 0 && right == 0) {
                    
                    array.add(str);
                return;
            }
            
            if(left < right) {
                    
                    dfs(left, right-1, str + ")",array);
            }
            
            if(left >0) {
                    
                    dfs(left-1,right,str+"(",array);
            }
            
        }

    public ArrayList<String> generateParenthesis(int n) {
        
        ArrayList<String> result = new ArrayList<String>();
        
        String re = "";
        
        dfs(n,n,re,result);
        
        return result;
        
    }
}

修改以后的efficiency 上升的不少。

67953911_1255243104657424_1671800974697562112_n.png

评分

参与人数 1荣誉 +2 鱼币 +3 贡献 +3 收起 理由
小甲鱼 + 2 + 3 + 3 鱼C有你更精彩^_^

查看全部评分

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-8-17 08:15:21 From FishC Mobile | 显示全部楼层
学习一下,补充知识
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 03:52

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表