22 Generate Parentheses

1512 단어
정의 문제: 왼쪽 괄호, 오른쪽 괄호는 일치해야 합니다. 즉, 반드시 같아야 합니다.
[ "((()))", "(()())", "(())()", "()(())", "()()()"]
n = 3, 중괄호 3개, 중괄호 3개 필요
left: 일치하는 "("right: dfs(int left, int right,char*str,char*result, int returnSize, int n) 없음
left-1: 추가 "("right-1:추가")
두 갈래 귀속: [30,12,20,03,11,11,#,#,02,02,10,02,10]
recursion()
{
     
    if (end_condition)
{

              solve;     
     
    }
else
{     
        // , 。
          
        if()
            recursion();
        if()
            recursion();
    }

}
#define SIZE 10000

void dfs(int left, int right, char* str, char**result, int* returnSize, int n) {
    if((left == 0) && (right == 0))
        result[(*returnSize)++] = str;
    else {
        char* newStr = (char *)malloc(sizeof(char) * (2*n+1));
        if(left > 0) {
            strcpy(newStr, str);
            dfs(left-1, right+1, strcat(newStr, "("), result, returnSize, n);
        }
        if(right > 0) {
            strcpy(newStr, str);
            dfs(left, right-1, strcat(newStr, ")"), result, returnSize, n);
        }
    }
}

/**
 * Return an array of size *returnSize.
 * Note: The returned array must be malloced, assume caller calls free().
 */
char** generateParenthesis(int n, int* returnSize) {
    char** result = (char **)malloc(sizeof(char *) * SIZE);
    dfs(n, 0, "", result, returnSize, n);
    return result;
}

좋은 웹페이지 즐겨찾기