首页 > 代码库 > 递归遍历 二叉树 求高度 和 节点数 和 叶子节点数
递归遍历 二叉树 求高度 和 节点数 和 叶子节点数
#include <iostream> #include <cstdio> #include<algorithm> #include<cstdlib> using namespace std; struct Node { char data; Node *lchild; Node *rchild; }; int nodes(Node *T) { if(T==NULL) return 0; else if(T->lchild==NULL&&T->rchild==NULL) return 1; else return nodes(T->lchild)+nodes(T->rchild)+1; } void CountLeaf(Node *T,int &num) { if(T!=NULL) { if(T->lchild==NULL&&T->rchild==NULL) num++; CountLeaf(T->lchild,num); CountLeaf(T->rchild,num); } } void High(Node *T, int &h) { if (T == NULL) h = 0; else { int left_h; High(T->lchild, left_h); int right_h; High(T->rchild, right_h); h = 1 + max(left_h, right_h); } } Node *CreateBiTree(Node *&T) { char ch; cin>>ch; if (ch == '#') T = NULL; else { if (!(T = (Node *)malloc(sizeof(Node)))) return 0; T->data = http://www.mamicode.com/ch;>递归遍历 二叉树 求高度 和 节点数 和 叶子节点数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。