简单的C语言二叉树的实现代码

#include <stdio.h> #include <MALLOC.H> #include <ASSERT.H> #include <STDLIB.H> typedef int ElemType; typedef struct Node { ElemType e; struct Node *left,*rigth; }BT; //构造二叉树,按二叉排序树方式构造 void insertNode
相关文章
相关标签/搜索