赞
踩
本题要求给定二叉树的 4 种遍历。
void InorderTraversal( BinTree BT );
void PreorderTraversal( BinTree BT );
void PostorderTraversal( BinTree BT );
void LevelorderTraversal( BinTree BT );
其中 BinTree
结构定义如下:
typedef struct TNode *Position;
typedef Position BinTree;
struct TNode{
ElementType Data;
BinTree Left;
BinTree Right;
};
要求 4 个函数分别按照访问顺序打印出结点的内容,格式为一个空格跟着一个字符。
#include <stdio.h>
#include <stdlib.h>
typedef char ElementType;
typedef struct TNode *Position;
typedef Position BinTree;
struct TNode{
ElementType Data;
BinTree Left;
BinTree Right;
};
BinTree CreatBinTree(); /* 实现细节忽略 */
void InorderTraversal( BinTree BT );
void PreorderTraversal( BinTree BT );
void PostorderTraversal( BinTree BT );
void LevelorderTraversal( BinTree BT );
int main()
{
BinTree BT = CreatBinTree();
printf("Inorder:"); InorderTraversal(BT); printf("\n");
printf("Preorder:"); PreorderTraversal(BT); printf("\n");
printf("Postorder:"); PostorderTraversal(BT); printf("\n");
printf("Levelorder:"); LevelorderTraversal(BT); printf("\n");
return 0;
}
/* 你的代码将被嵌在这里 */
Inorder: D B E F A G H C I
Preorder: A B D F E C G H I
Postorder: D E F B H G I C A
Levelorder: A B C D F G I E H
先序遍历就是对树中任意结点,
代码采用递归方式实现。
中序遍历就是对树中任意结点,
代码采用递归方式实现。
后序遍历就是对树中任意结点,
代码采用递归方式实现。
层次遍历,按树的层次,从根结点往下逐层访问每个结点,对于每一层的结点,先访问其左孩子,再访问右孩子。遇到的结点先访问,这和队列的出队入队的特性符合,所以用队列实现。
算法实现:
#include <stdio.h>
#include <stdlib.h>
typedef char ElementType;
typedef struct TNode *Position;
typedef Position BinTree;
struct TNode {
ElementType Data;
BinTree Left;
BinTree Right;
};
BinTree CreatBinTree(); /* 实现细节忽略 */
void InorderTraversal(BinTree BT);
void PreorderTraversal(BinTree BT);
void PostorderTraversal(BinTree BT);
void LevelorderTraversal(BinTree BT);
void CreateBinaryTree(BinTree BT);
int main() {
BinTree BT = CreatBinTree();
printf("Inorder:");
InorderTraversal(BT);
printf("\n");
printf("Preorder:");
PreorderTraversal(BT);
printf("\n");
printf("Postorder:");
PostorderTraversal(BT);
printf("\n");
printf("Levelorder:");
LevelorderTraversal(BT);
printf("\n");
return 0;
}
/**
* 前序遍历
* @param BT 树结点
*/
void PreorderTraversal(BinTree BT) {
//结点为空就返回
if (BT == NULL) return;
//打印结点元素
printf(" %c", BT->Data);
//往左子树递归
PreorderTraversal(BT->Left);
//往右子树递归
PreorderTraversal(BT->Right);
}
/**
* 中序遍历
* @param BT 树结点
*/
void InorderTraversal(BinTree BT) {
//结点为空就返回
if (BT == NULL) return;
//往左子树递归
InorderTraversal(BT->Left);
//打印结点元素
printf(" %c", BT->Data);
//往右子树递归
InorderTraversal(BT->Right);
}
/**
* 后序遍历
* @param BT 树结点
*/
void PostorderTraversal(BinTree BT) {
//结点为空就返回
if (BT == NULL) return;
//往左子树递归
PostorderTraversal(BT->Left);
//往右子树递归
PostorderTraversal(BT->Right);
//打印结点元素
printf(" %c", BT->Data);
}
/**
* 层次遍历
* @param T 树结点
*/
void LevelorderTraversal(BinTree BT) {
int rear = 0, front = 0;
//模拟队列
BinTree ptr[100] = {NULL}, p = NULL;
if (BT != NULL) {
//队列第一个元素是根结点
ptr[rear] = BT;
rear++;
//队列不为空
while (rear > front) {
//访问队列结点,模拟出队
p = ptr[front];
front++;
printf(" %c", p->Data);
if (p->Left != NULL) {
//左孩子入队
ptr[rear] = p->Left;
rear++;
}
if (p->Right != NULL) {
//右孩子入队
ptr[rear] = p->Right;
rear++;
}
}
}
}
BinTree CreatBinTree() {
char c;
scanf("%c", &c);
//判空
if (c == '#') return NULL;
BinTree T = (BinTree) malloc(sizeof(struct TNode));
//先序递归构建
T->Data = c;
T->Left = CreatBinTree();
T->Right = CreatBinTree();
return T;
}
按照先序遍历的方式构建二叉树:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。