河南成教 / 数据结构与算法
1[论述题]
设二叉树以二叉链表的形式存储,有关类型定义如下:
typedef struct BiTNode { // 结点结构
int data;
struct BiTNode *lchild, *rchild; // 左右孩子指针
} BiTNode, *BiTree;
下面是求二叉树上叶子结点个数的类_C算法,请填空。
int Leaf_number ( BiTree T ) //T是树的根结点的指针
{
} // Leaf_number
1[论述题]
设二叉树以二叉链表的形式存储,有关类型定义如下:
typedef struct BiTNode { // 结点结构
int data;
struct BiTNode *lchild, *rchild; // 左右孩子指针
} BiTNode, *BiTree;
下面是求二叉树上叶子结点个数的类_C算法,请填空。
int Leaf_number ( BiTree T ) //T是树的根结点的指针
{
} // Leaf_number
参考答案:
佳题速递: