반복 - 문자열 - 괄호 생성**

4800 단어
숫자 n은 괄호를 생성하는 대수를 대표합니다. 가능한 모든 유효한 괄호 조합을 생성할 수 있는 함수를 설계하십시오.예: 입력: n = 3 출력: [()), ()(), ()(), ()(), ()(), ()()())]]
출처: 리코드(LeetCode) 링크:https://leetcode-cn.com/problems/generate-parentheses사고방식: 숫자 n, 왼쪽 괄호 개수, 오른쪽 괄호 개수, 답안, 현재 연결된 문자열은 왼쪽 괄호 개수 == 오른쪽 괄호 개수 =n 왼쪽 괄호 끝내기 주의: 오른쪽 괄호 개수가 왼쪽 괄호 개수보다 작을 때 오른쪽 괄호 하나를 추가하는 귀속
class Solution {
    public List<String> generateParenthesis(int n) {
        List<String> list=new ArrayList<>();
       
        process(n,0,0,list,"");
        return list;
    }
    public void process(int n,int count1,int count2,List<String> list,String str){               	
    if(count1==count2&&count1==n)
			{list.add(str);
                return;}
        if(count1<n)
           process(n,count1+1,count2,list,str+"(");
        if(count2<count1)
            process(n,count1,count2+1,list,str+")");
            

    }
}

좋은 웹페이지 즐겨찾기