二叉树 数据结构 | 2024-8-12 21:05 | 2024-8-12 21:06 | 86 2402 字 | 40 分钟 二叉树 1. 定义 typedef int ElemType; typedef struct BiTNode { ElemType data; struct BiTNode *lchild, *rchild; } BiTNode, *BiTree; 2. 遍历 // 先序遍历 void preOrder(BiTree T){ if(T != NUL… 数据结构