fix some bugs in c codes (#1089)

This commit is contained in:
Arthur
2024-02-23 01:34:49 +08:00
committed by GitHub
parent 799da32eb0
commit 962f8f91f7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
#include "../utils/common.h"
/* 二叉搜索树结构体 */
/* 二叉搜索树结构体 */
typedef struct {
TreeNode *root;
} BinarySearchTree;