DS基础--先序遍历二叉树(递归、非递归、线索二叉树,C语言描述)

这篇博客介绍了如何使用C语言实现二叉树的先序遍历,包括递归、非递归两种方法,并详细阐述了先序线索二叉树的构建过程。通过示例代码展示了创建、遍历和线索化的步骤。
摘要由CSDN通过智能技术生成

先序遍历二叉树的递归合非递归方式在我之前的博客中分享过了,博客加入了二叉树的线索化,构造先序线索二叉树的这么一种方式。关于中序线索二叉树的构建及其线索化方法在严蔚敏的书算法描述得很详尽了,后序线索二叉树的线索化过程,需要使用三叉链表的结构,这里只描述先序线索化方法,注释和相关描述比较详尽了,这些代码可直接上机调试大笑Talking is cheap,just show code:


/*
 * The Ways of PreOrderTraverse Binary Tree.
 * Just Practice Building PreOrderThreading Binary Tree.
 * Understand the Thinking of Binary Tree Threading.
 *
 * In My View,Building "PreOrderThread Tree" Needs the Fllowing Steps:
 * 1.Create a Binary Tree
 * 2.Threading
 * 1) Create a "Head Node" of This Tree
 * 2) Traversing the Tree in "PreOrder Way"
 * -> Threading this Node.Just Threading The NULL Pointer(Building the Link Between "this(->lchild)" and "pre(->rchild)")
 * -> Threading(this->lchild)
 * -> Threading(this->rchild)
 * 3) Don't Forget Threading The Final Node (rchild = Thrt)
 * 3.Traversing(Dependence Its Traverseing Way)
 * 
 */
 
#include <stdio.h>
#include <stdlib.h>


#define OK 1
#define ERROR 0
#define OVERFLOW -1


#define STACK_MAXSIZE 16
#define STACK_INCREMENT 10


#define DEBUG 1


typedef enum PointerTag{
Link,
Thread
}PointerTag;


typedef int Status;
typedef char Elemtype;


typedef struct BinThrNode{
Elemtype data;
struct BinThrNode *lchild,*rchild;
PointerTag LTag,RTag;
}BinThrNode,*BinThrTree;


typedef struct{
BinThrTree *base,*top;
int length;
}SqStack;


static BinThrTree pre;


/* ----- Stack Operation ----- */
static Status InitStack(SqStack *Stack)
{
if(!(Stack->base = (BinThrTree *)malloc(STACK_MAXSIZE * sizeof(BinThrTree))))
exit(OVE

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值