函数分离

This commit is contained in:
2024-11-20 22:08:57 +08:00
parent 857c54cde0
commit f2e5df0f0b
3 changed files with 22 additions and 19 deletions
+2
View File
@@ -12,6 +12,8 @@ public:
static bool is_empty(BiTree *bt);
static bool is_leaf(BiTree *bt);
static int sum_leaf(BiTree *bt);
static BiTree* createNode(int data);
static void insertNode(BiTree*& bt, int value);
};