mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-24 10:06:28 +08:00
fix some bugs in c codes (#1089)
This commit is contained in:
parent
799da32eb0
commit
962f8f91f7
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
#include "../utils/common.h"
|
#include "../utils/common.h"
|
||||||
|
|
||||||
/* 二叉搜索树你结构体 */
|
/* 二叉搜索树结构体 */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
TreeNode *root;
|
TreeNode *root;
|
||||||
} BinarySearchTree;
|
} BinarySearchTree;
|
||||||
|
|
|
@ -25,7 +25,7 @@ void testTreeNode() {
|
||||||
printTree(root);
|
printTree(root);
|
||||||
|
|
||||||
// tree to arr
|
// tree to arr
|
||||||
int *arr = treeToArray(root, size);
|
int *arr = treeToArray(root, &size);
|
||||||
printArray(arr, size);
|
printArray(arr, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue