NOJ数据结构016——计算二叉树叶子结点数目
叶子结点就是无后继的结点,搞清楚这点我们就可以根据上一题的经验轻松写出本题。#include <stdio.h>#include <stdlib.h>typedef struct Node{ char data; struct Node *LChild; struct Node *RChild;}BiTNode, *BiTree;void CreateBinTree(BiTree *T); //创建二叉树int Getl