二叉树的基本操作:二叉树基本操作的程序实现

//Bintree.h #includestdio.h #includemalloc.h typedef struct Binnode{//二叉树结点结构体 char data; struct Binnode *lchild; struct Binnode *rchild; }; typedef Binnode *Bintree ; typedef struct sta... [阅读全文]
1 共1条 分1页