摘要: 二叉树的链式存储定义 typedef struct BiTNode { int data; struct BiTNode *lchild, *rchild; }BiTNode, *BiTree; 统计叶子结点个数 int LeavesCount(BiTNode T) { int count; if( 阅读全文
posted @ 2020-08-10 18:10 0202zc 阅读(141) 评论(0) 推荐(0) 编辑