【文件属性】:
文件名称:线索二叉树算法
文件大小:2KB
文件格式:TXT
更新时间:2015-06-11 06:47:57
二树叉
#include
#include
#include
typedef char DataType;/*定义DataType类型*/
typedef enum {Link,Thread}PointerTag;
typedef struct node{
DataType data;
struct node *lchild, *rchild;/*左右孩子子树*/
PointerTag LTag,RTag;
}BiThrNode; /*结点类型*/
typedef BiThrNode *BiThrTree ;/*二叉树类型*/