判断完全二叉树:判断完全二叉树以及求二叉...

/* 判断完全二叉树,依据定义:任何一个节点(除去叶子节点)有且仅有两个“孩子” */ #includestdlib.h #define MAX_TREE_DEGREE 10 typedef struct BTnode{//以二叉链表作为存储结构 char data; struct BTnode* lchild; struct BTn... [阅读全文]
1 共1条 分1页