欢迎来到天天文库
浏览记录
ID:34431656
大小:76.00 KB
页数:9页
时间:2019-03-06
《二叉树是一种特殊的树》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、二叉树是一种特殊的树,每个节点只能有最多二个孩子节点,或者没有孩子节点。建立,与撤销或遍历二叉树主要是靠递归的方法。#include#includetypedefstructstud/*定义二叉树的结构,只有一个数据项,和两个孩子节点*/{chardata;structstud*left;structstud*right;}bitree;voiddestroy(bitree**root)/*撤销二叉树,这里用的是递归和二级指针*/{if(*root!=NULL&&(*root)->left!=NULL)/*当前结点与左子树不空,递归撤销左子树*/d
2、estroy(&(*root)->left);if(*root!=NULL&&(*root)->right!=NULL)/*当前结点与右子树不空,递归撤销右子树*/destroy(&(*root)->right);free(*root);/*左右子树都为空,撤销该节点,并递归撤销其上的所有节点*/}voidinititate(bitree**root)/*初始化二叉树的头结点,并分配空间*/{*root=(bitree*)malloc(sizeof(bitree));(*root)->left=NULL;(*root)->right=NULL;}bitree*insert_left(b
3、itree*curr,charx)/*在左子树插入数据*/{bitree*s,*t;if(curr==NULL) returnNULL;t=curr->left;/*保存当前左子树的数据*/s=(bitree*)malloc(sizeof(bitree));s->data=x;s->left=t;/*新结点指向原来的左子树*/s->right=NULL;curr->left=s;/*原来的节点指向新结点*/returncurr->left;}bitree*insert_right(bitree*curr,charx)/*在这个节点的右子树插入数据*/{bitree*s,*t;if(c
4、urr==NULL) returnNULL;t=curr->right;s=(bitree*)malloc(sizeof(bitree));s->data=x;s->left=NULL;s->right=t;curr->right=s;returncurr->right;}bitree*delete_left(bitree*curr)/*删除当前结点的左子树*/{if(curr!=NULL&&curr->left!=NULL) destroy(&curr->left);/*删除左子树本身及其以后的所有节点*/curr->left=NULL;returncurr;}bitree*de
5、lete_right(bitree*curr)/*删除右子树*/{if(curr!=NULL&&curr->right!=NULL) destroy(&curr->right);curr->right=NULL;returncurr;}voidpreorder(bitree*root)/*递归先序遍历根节点*/{if(root!=NULL){ printf("%c",root->data); preorder(root->left); preorder(root->right);}}voidmidorder(bitree*root)/*递归中序遍历根节点*/{if(root!=
6、NULL){ midorder(root->left); printf("%c",root->data); midorder(root->right);}}voidpostorder(bitree*root))/*递归后序遍历根节点*/{if(root!=NULL){ postorder(root->left); postorder(root->right); printf("%c",root->data);}}bitree*search(bitree*root,charx))/*递归某一数值*/{bitree*find=NULL;if(root!=NULL){ if(r
7、oot->data==x) find=root; else { find=search(root->left,x);)/*在左子树查找*/ if(find==NULL))/*左子树没有找到的话*/ find=search(root->right,x);/*右子树找*/ }}returnfind;}voidmain(){ bitree*root,*s,*p,*find; inti,j,k; charc='E'; i
此文档下载收益归作者所有