摘要:
#include #include typedef char TElemType; typedef struct node{ TElemType data; //结点数据 struct node *lchild,*rchild; //左右子女指针 }BinTNode, *BinTree; //二叉树定义 //创建二叉树 void createBinT... 阅读全文
posted @ 2019-05-30 21:00
吕志琪
阅读(793)
评论(0)
推荐(0)