码迷,mamicode.com
首页 > 其他好文 > 详细

二叉树 代码

时间:2018-02-12 11:30:47      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:null   post   data   std   style   node   attr   turn   empty   

#include<bits_stdc++.h>
using namespace std;
typedef struct btnode
{
char data;
btnode *lc,*rc;
}bitn,*btree;
void creattree(btree &t)
{
char c;
cin>>c;
if(c==‘#‘)
t=NULL;
else
{
t=(btree)malloc(sizeof(bitn));
t->data=c;
creattree(t->lc);
creattree(t->rc);
}
}
int isempty(btree t)
{
if(t)
return 0;
else
return 1;
}
int depth(btree t)
{
int i,j;
if(!t)
return 0;
if(t->lc)
i=depth(t->lc);
else
i=0;
if(t->rc)
j=depth(t->rc);
else
j=0;
return i>j?i+1:j+1;
}
void preorder(btree t)
{
if(!t)
return;
cout<<t->data<<endl;
preorder(t->lc);
preorder(t->rc);
}
int main()
{
btree t;
creattree(t);
int d;
d=depth(t);
cout<<"depth is "<<d<<endl;
preorder(t);
return 0;
}

二叉树 代码

标签:null   post   data   std   style   node   attr   turn   empty   

原文地址:https://www.cnblogs.com/wander-clouds/p/8443708.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!