题目:以实验2.1的二叉链表为存储结构,编写程序实现求二叉树结点个数、叶子结点个数、二叉树的高度以及交换二叉树所有左右子树的操作。
部分代码:
求二叉树结点个数:
//求二叉树结点个数
int Size(BinaryTreeNode *t){
if(!t) return 0;
return Size(t->LChild) + Size(t->RChild) + 1;
}
求二叉树叶子结点个数:
//求二叉树叶子结点个数
int Leaf(BinaryTreeNode *t){
if(t==NULL) return 0;
if((t->LChild == NULL) && (t->RChild == NULL)) return 1;
return Leaf(t->LChild) + Leaf(t->RChild);
}
求二叉树的高度:
//求二叉树的高度
int Depth(BinaryTreeNode *t){
if(!t) return 0;
// else return (1 + Depth(t->LChild) > Depth(t->RChild) ? Depth(t->LChild) : Depth(t->RChild));
else return 1 + max(Depth(t->LChild) , Depth(t->RChild));
}
交换二叉树:
//交换二叉树
void Exch(BinaryTreeNode *t){
if(t){
BinaryTreeNode *q = t->LChild;
t->LChild = t->RChild;
t->RChild = q;
Exch(t->LChild);
Exch(t->RChild);
}
}
完整程序:
#include<stdio.h>
#include<stdlib.h>
#include<algorithm>
using namespace std;
typedef char T;
typedef struct BinaryTreeNode{
T Data;
struct BinaryTreeNode *LChild, *RChild;
}BinaryTreeNode;
//先序遍历构建二叉树
BinaryTreeNode *PreCreateBt(BinaryTreeNode *t){
char ch;
ch = getchar();
if(ch == '#'){ //输入为#表示这里建立空二叉树,即遍历算法的空操作
t = NULL;
}
else{
t = (BinaryTreeNode *)malloc(sizeof(BinaryTreeNode));
t->Data = ch; //构造根结点
t->LChild = PreCreateBt(t->LChild); //构造左子树
t->RChild = PreCreateBt(t->RChild); //构造右子树
}
return t;
}
//先序遍历
void PreOrderTransverse(BinaryTreeNode *t){
if(t==NULL){
return;
}
printf("%c",t->Data); //打印输出根结点,此处可以定义其他操作
PreOrderTransverse(t->LChild); //然后先序遍历左子树
PreOrderTransverse(t->RChild); //最后先序遍历右子树
}
//中序遍历
void InOrderTransverse(BinaryTreeNode *t){
if(t==NULL){
return;
}
InOrderTransverse(t->LChild); //中序遍历根结点的左子树
printf("%c",t->Data); //打印输出根结点,此处可以定义其他操作
InOrderTransverse(t->RChild); //最后中序遍历根结点的右子树
}
//后序遍历
void PostOrderTransverse(BinaryTreeNode *t){
if(t==NULL){
return;
}
PostOrderTransverse(t->LChild); //后序遍历根结点的左子树
PostOrderTransverse(t->RChild); //然后后序遍历根结点的右子树
printf("%c",t->Data); //最后打印输出根结点,此处可以定义其他操作
}
//求二叉树结点个数
int Size(BinaryTreeNode *t){
if(!t) return 0;
return Size(t->LChild) + Size(t->RChild) + 1;
}
//求二叉树叶子结点个数
int Leaf(BinaryTreeNode *t){
if(t==NULL) return 0;
if((t->LChild == NULL) && (t->RChild == NULL)) return 1;
return Leaf(t->LChild) + Leaf(t->RChild);
}
//求二叉树的高度
int Depth(BinaryTreeNode *t){
if(!t) return 0;
// else return (1 + Depth(t->LChild) > Depth(t->RChild) ? Depth(t->LChild) : Depth(t->RChild));
else return 1 + max(Depth(t->LChild) , Depth(t->RChild));
}
//交换二叉树
void Exch(BinaryTreeNode *t){
if(t){
BinaryTreeNode *q = t->LChild;
t->LChild = t->RChild;
t->RChild = q;
Exch(t->LChild);
Exch(t->RChild);
}
}
int main(){
BinaryTreeNode *t = NULL;
t = PreCreateBt(t);
printf("The number of Nodes:%d\n",Size(t));
printf("The number of LeafNodes:%d\n",Leaf(t));
printf("The height of the tree:%d\n",Depth(t));
Exch(t);
printf("\nAfter exchanging the BinaryTree:\n\n");
printf("PreOrderTransverse:\n");
PreOrderTransverse(t);
printf("\n\nInOrderTransverse:\n");
InOrderTransverse(t);
printf("\n\nPostOrderTransverse:\n");
PostOrderTransverse(t);
printf("\n");
return 0;
}
实验结果:输入ABEH###C#D##MN###,分别计算结点数、叶子结点数、高度,然后进行二叉树交换,再分别先序、中序、后序遍历。
版权声明:本文为博主原创文章,未经博主允许不得转载。