// // Created by kim yang on 2020/8/11. // //顺序存储 #include #define MaxSize 100 struct TreeNode{ int value;//结点中的数据元素 bool isEmpty; };