文件名称:C++建立二叉链表树
文件大小:943B
文件格式:CPP
更新时间:2014-05-10 10:02:02
二叉链表树
假设有关二叉树的二叉链表存储的类型定义如下: typedef struct BiTNode{ // 结点结构 ElemType data ;//数据域 struct BiTNode *Lchild ;//左孩子指针 struct BiTNode *Rchild;//右孩子指针 } BiTNode ,*BiTree ;
文件名称:C++建立二叉链表树
文件大小:943B
文件格式:CPP
更新时间:2014-05-10 10:02:02
二叉链表树
假设有关二叉树的二叉链表存储的类型定义如下: typedef struct BiTNode{ // 结点结构 ElemType data ;//数据域 struct BiTNode *Lchild ;//左孩子指针 struct BiTNode *Rchild;//右孩子指针 } BiTNode ,*BiTree ;