【数据结构】二叉树队列求树高 自用

#include
#include

typedef struct BiNode{
int data;
struct BiNode *lchild, *rchild;
}BiNode, *BiTree;

// 初始化
void InitBiNode(BiNode *T){
T->lchild=NULL;
T->rchild=NULL;
};

// 求树高
int Height(BiTree T){
if(!T)
return 0;
// front队头,rear队尾,last当前层最右结点,level层数
int front=-1, rear=0, last=0, level=0;
BiTree Q[10];
BiTree p;
Q[rear]=T;
while(fro

【数据结构】二叉树队列求树高 自用最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/7922.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>