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

常用数据结构二叉树的建立

时间:2015-05-19 22:24:12      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

二叉树是最重要的数据结构之一,先序建立二叉树的过程如下。

#include<stdio.h>

#include<stdlib.h>

typedef struct BiTNode

{

         char data;

         struct BiTNode *lchild,*rchild;

}BiTnode,*BiTree;

 

BiTree Create(BiTree root)//先序建立二叉树

{

         char ch;

         printf("input data:");

         root=(BiTree)malloc(sizeof(BiTnode));

         scanf("%c",&ch);

         getchar();

 

         if(ch==‘#‘)

                  root=NULL;

         else

         {

                  root->data=ch;

                  root->lchild=Create(root->lchild);

                  root->rchild=Create(root->rchild);

         }

         return root;

}

 void PreOrderTra(BiTree root)

{

         if(root)

         {

                  printf("%c ",root->data);

                  PreOrderTra(root->lchild);

                  PreOrderTra(root->rchild);

         }

}

 void InOrderTra(BiTree root)

{

         if(root)

         {

                  InOrderTra(root->lchild);

                  printf("%c ",root->data);

                  InOrderTra(root->rchild);

         }

}

 void LastOrderTra(BiTree root)

{

         if(root)

         {

                  LastOrderTra(root->lchild);

                  LastOrderTra(root->rchild);

                  printf("%c ",root->data);

         }

}

int main(void)

{

         BiTree root=0;

         root=Create(root);

         printf("先序遍历:");

         PreOrderTra(root);

         printf("\n");

         printf("中序遍历:");

         InOrderTra(root);

         printf("\n");

         printf("后序遍历:");

         LastOrderTra(root);

         printf("\n");

         return 0; 

}

常用数据结构二叉树的建立

标签:

原文地址:http://www.cnblogs.com/PCLearnHome/p/4515598.html

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