forked from begeekmyfriend/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: begeekmyfriend <[email protected]>
- Loading branch information
1 parent
4e051f3
commit 426be1d
Showing
4 changed files
with
176 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
all: | ||
gcc -O2 -o test unique_bst.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
/** | ||
* i=1 | ||
* / \ | ||
* (1,0) (2,3) // 2 possibilities | ||
* | ||
* | ||
* i=1 | ||
* / \ | ||
* (1,0) i=2 | ||
* / \ | ||
* (2,1) (3,3) | ||
* | ||
* | ||
* i=1 | ||
* / \ | ||
* (1,0) i=3 | ||
* / \ | ||
* (2,2) (4,3) | ||
* | ||
* | ||
* i=2 | ||
* / \ | ||
* (1,1) (3,3) // 1 possiblity | ||
* | ||
* | ||
* i=3 | ||
* / \ | ||
* (1,2) (4,3) // 2 possibilities | ||
* | ||
* | ||
* i=3 | ||
* / \ | ||
* i=1 (4,3) | ||
* / \ | ||
* (2,1) (3,3) | ||
* | ||
* | ||
* i=3 | ||
* / \ | ||
* i=2 (4,3) | ||
* / \ | ||
* (1,1) (3,2) | ||
* | ||
**/ | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
|
||
struct TreeNode { | ||
int val; | ||
struct TreeNode *left; | ||
struct TreeNode *right; | ||
}; | ||
|
||
static struct TreeNode *sub_tree_generate(int low, int high, int *count) | ||
{ | ||
int i, j, k; | ||
if (low > high) { | ||
*count = 0; | ||
return NULL; | ||
} else if (low == high) { | ||
struct TreeNode *node = malloc(sizeof(*node)); | ||
node->val = low; | ||
node->left = NULL; | ||
node->right = NULL; | ||
*count = 1; | ||
return node; | ||
} else { | ||
*count = 0; | ||
int capacity = 5; | ||
struct TreeNode *roots = malloc(capacity * sizeof(struct TreeNode)); | ||
for (i = low; i <= high; i++) { | ||
/* Possibilities of roots with different values */ | ||
int left_cnt, right_cnt; | ||
struct TreeNode *left_subs = sub_tree_generate(low, i - 1, &left_cnt); | ||
struct TreeNode *right_subs = sub_tree_generate(i + 1, high, &right_cnt); | ||
/* Total number = left sub possibilities * right sub possibilities */ | ||
if (left_cnt == 0) left_cnt = 1; | ||
if (right_cnt == 0) right_cnt = 1; | ||
if (*count + (left_cnt * right_cnt) >= capacity) { | ||
capacity *= 2; | ||
capacity += left_cnt * right_cnt; | ||
roots = realloc(roots, capacity * sizeof(struct TreeNode)); | ||
} | ||
for (j = 0; j < left_cnt; j++) { | ||
for (k = 0; k < right_cnt; k++) { | ||
/* Possibilities of roots with same value but different sub-trees */ | ||
roots[*count].val = i; | ||
roots[*count].left = left_subs == NULL ? NULL : &left_subs[j]; | ||
roots[*count].right = right_subs == NULL ? NULL : &right_subs[k]; | ||
(*count)++; | ||
} | ||
} | ||
} | ||
return roots; | ||
} | ||
} | ||
|
||
/** | ||
** Return an array of size *returnSize. | ||
** Note: The returned array must be malloced, assume caller calls free(). | ||
**/ | ||
static struct TreeNode** generateTrees(int n, int* returnSize) | ||
{ | ||
int i, count = 0; | ||
struct TreeNode *roots = sub_tree_generate(1, n, &count); | ||
struct TreeNode **results = malloc(count * sizeof(struct TreeNode *)); | ||
for (i = 0; i < count; i++) { | ||
results[i] = &roots[i]; | ||
} | ||
*returnSize = count; | ||
return results; | ||
} | ||
|
||
static void dump(struct TreeNode *node) | ||
{ | ||
printf("%d ", node->val); | ||
if (node->left != NULL) { | ||
dump(node->left); | ||
} else { | ||
printf("# "); | ||
} | ||
if (node->right != NULL) { | ||
dump(node->right); | ||
} else { | ||
printf("# "); | ||
} | ||
} | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
if (argc != 2) { | ||
fprintf(stderr, "Usage: ./test n\n"); | ||
exit(-1); | ||
} | ||
int i, count = 0; | ||
struct TreeNode **results = generateTrees(atoi(argv[1]), &count); | ||
for (i = 0; i < count; i++) { | ||
dump(results[i]); | ||
printf("\n"); | ||
} | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
all: | ||
gcc -O2 -o test unique_bst.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
|
||
/* | ||
* f(n) = f(0)f(n-1) + f(1)f(n-2) + ... + f(n-2)f(1) + f(n-1)f(0) | ||
*/ | ||
|
||
static int numTrees(int n) { | ||
int i, j; | ||
int *sum = malloc((n + 1) * sizeof(int)); | ||
sum[0] = 1; | ||
for (i = 1; i <= n; i++) { | ||
for (j = 0; j < i; j++) { | ||
sum[i] += sum[j] * sum[i - j - 1]; | ||
} | ||
} | ||
return sum[n]; | ||
} | ||
|
||
|
||
int main(int argc, char **argv) | ||
{ | ||
if (argc != 2) { | ||
fprintf(stderr, "Usage: ./test n"); | ||
exit(-1); | ||
} | ||
printf("%d\n", numTrees(atoi(argv[1]))); | ||
return 0; | ||
} |