Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 210 Bytes

6.1二叉树的链式存储.md

File metadata and controls

10 lines (9 loc) · 210 Bytes
typedef char datatype;//二叉树结点类型
typedef struct node{
	datatype data;
	struct node *lchild,*rchild;
}bintnode;
typedef bintnode *bintree;
bintree root;//指向二叉树根结点的指针