Я хочу распечатать всю допустимую комбинацию n-пар скобок в C. В основном я даю значение 3. Это я хочу распечатать всю комбинацию допустимых скобок с 3-мя левыми и 3-мя правыми скобками. Однако, я получил ошибку сегментации, GDB печатает в _printValidParentheses(str, leftCount--, rightCount, count++);
строку Мне интересно, кто-нибудь знает, почему я виноват? Благодаря.
void printString(char * str) {
while (*str) {
printf("%c", *str++);
}
printf("\n");
}
void _printValidParentheses(char str[], int leftCount, int rightCount, int count) {
if (leftCount < 0 || rightCount < 0) {
return;
}
if (leftCount == 0 && rightCount == 0) {
printString(str);
return;
} else {
if (leftCount > 0) {
str[count] = '(';
_printValidParentheses(str, leftCount--, rightCount, count++);
}
if (rightCount > leftCount) {
str[count] = ')';
_printValidParentheses(str, leftCount, rightCount--, count++);
}
}
}
void printValidParentheses(int n) {
char *str = malloc(sizeof(char) * n * 2);
_printValidParentheses(str, n, n, 0);
}
int main() {
printValidParentheses(3);
return 1;
}