/061.二叉树遍历

简介: /061.二叉树遍历
#include <stdio.h>
typedef struct bitnode
{
  char data;
  struct bitnode *lchild, *rchild;
}bitnode, *bitree;
void createbitree(t,n)
bitnode ** t;
int *n;
{
  char x;
  bitnode *q;
  *n=*n+1;
  printf(" Input  %d  DATA: ",*n);
  x=getchar();
  if(x!='\n') getchar();
  if (x=='^')
  return;
  q=(bitnode*)malloc(sizeof(bitnode));
  q->data=x;
  q->lchild=NULL;
  q->rchild=NULL;
  *t=q;
  printf("This Address is:%o,Data is:%c, Left Pointer is:%o,Right Pointer is:  %o\n",q,q->data,q->lchild,q->rchild);
  createbitree(&q->lchild,n);
  createbitree(&q->rchild,n);
  return;
}
void visit(e)
bitnode *e;
{
  printf("  Address:  %o,  Data:  %c,  Left Pointer:  %o,  Right Pointer:  %o\n",e,e->data,e->lchild,e->rchild);
}
void preordertraverse(t)
bitnode *t;
{
  if(t)
  {
    visit(t);
    preordertraverse(t->lchild);
    preordertraverse(t->rchild);
    return ;
  }else return ;
}
void countleaf(t,c)
bitnode *t;
int *c;
{
  if(t!=NULL)
    {
      if (t->lchild==NULL && t->rchild==NULL)
      {
        *c=*c+1;
      }
      countleaf(t->lchild,c);
      countleaf(t->rchild,c);
    }
  return;
}
int treehigh(t)
bitnode *t;
{
   int lh,rh,h;
   if(t==NULL)
    h=0;
   else
   {
    lh=treehigh(t->lchild);
    rh=treehigh(t->rchild);
    h=(lh>rh ? lh:rh)+1;
   }
   return h;
}
main()
{
  bitnode *t; int count=0;
  int n=0;
  clrscr();
  printf("Please initialize the TREE!\n");
  createbitree(&t,&n);
  printf("\n This is TREE Struct:\n");
  preordertraverse(t);
  countleaf(t,&count);
  printf(" This TREE has %d leaves.",count);
  printf("\n High of The TREE is: %d\n",treehigh(t));
  puts("\n Press any key to quit...");
  getch();
}
相关文章
|
2月前
二叉树遍历及应用
二叉树遍历及应用
47 0
数据结构实验之二叉树二:遍历二叉树
数据结构实验之二叉树二:遍历二叉树
|
2月前
|
算法
带你深入理解二叉树的遍历
带你深入理解二叉树的遍历
|
2月前
|
存储
LeetCode题94,44,145,二叉树的前中后序遍历,非递归
LeetCode题94,44,145,二叉树的前中后序遍历,非递归
45 0
|
12月前
1364:二叉树遍历(flist)
1364:二叉树遍历(flist)
|
2月前
【二叉树遍历和练习】
【二叉树遍历和练习】
41 0
|
8月前
|
算法
25 二叉树的遍历
25 二叉树的遍历
19 0
|
11月前
二叉树遍历
二叉树遍历
非递归实现二叉树遍历
非递归实现二叉树遍历
37 0
|
存储
二叉树的遍历问题
二叉树的遍历问题