91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 1KB
    文件類型: .cpp
    金幣: 1
    下載: 0 次
    發布日期: 2021-01-11
  • 語言: C/C++
  • 標簽: 二叉鏈表??

資源簡介

以二叉鏈表作存儲結構,設計求二叉樹高度的算法。

資源截圖

代碼片段和文件信息

/*以二叉鏈表作存儲結構,設計求二叉樹高度的算法。*/
#include
#include
#include
#define?maxsize?64
typedef?char?datatype;
typedef?struct?node
{
datatype?data;
struct?node?*lchild*rchild;
}bitree;
int?Bintreedep(bitree?*t)
{
int?l1l2;
if(t==NULL)?return?0;
else
{
l1=Bintreedep(t->lchild);
l2=Bintreedep(t->rchild);
return?((l1>l2?l1:l2)+1);
}
}
bitree?*Creatree(bitree?*q[])
{
bitree?*root*s;
int?front=1rear=0;
datatype?ch;
root=NULL;
cout<<“^^^/請輸入樹的元素,其中“@”表示需、虛結點,并以“#”結束:/^^^“<

評論

共有 條評論