🌱 add ThreadBiTree

This commit is contained in:
Kim Yang
2020-08-23 05:20:58 +08:00
parent eaf28f09e5
commit 7727e64950
7 changed files with 280 additions and 51 deletions

View File

@@ -0,0 +1,32 @@
//
// Created by Kim Yang on 2020/8/14.
// Copyright (c) Kim Yang All rights reserved.
//
//顺序存储————二叉树
#include <stdio.h>
/**定义模块**/
#define MaxSize 100
struct TreeNode {
int value;//结点中的数据元素
bool isEmpty;
};
/**定义模块**/
/**实现模块**/
//坐等填坑
/**实现模块**/
/**测试模块**/
/**测试模块**/
int main() {
return 0;
}