摘要: //二叉树结构 typedef char TElemType; typedef struct BiTNode { TElemType data; struct BiTNode *lchild, *rchild; }BiTNode, *BiTree; //链队 typedef struct QNode 阅读全文
posted @ 2021-11-23 23:58 行路难,多歧路 阅读(147) 评论(0) 推荐(0)