博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
二叉树的二叉线索存储
阅读量:4485 次
发布时间:2019-06-08

本文共 3025 字,大约阅读时间需要 10 分钟。

/* c6-3.h 二叉树的二叉线索存储表示 */ typedef enum{Link,Thread}PointerTag; /* Link(0):指针,Thread(1):线索 */ typedef struct BiThrNode {   TElemType data;   struct BiThrNode *lchild,*rchild; /* 左右孩子指针 */   PointerTag LTag,RTag; /* 左右标志 */ }BiThrNode,*BiThrTree;
/* bo6-3.c 二叉树的二叉线索存储(存储结构由c6-3.h定义)的基本操作 */ Status CreateBiThrTree(BiThrTree *T) { /* 按先序输入二叉线索树中结点的值,构造二叉线索树T */   /* 0(整型)/空格(字符型)表示空结点 */   TElemType h; #if CHAR   scanf("%c",&h); #else   scanf("%d",&h); #endif   if(h==Nil)     *T=NULL;   else   {     *T=(BiThrTree)malloc(sizeof(BiThrNode));     if(!*T)       exit(OVERFLOW);     (*T)->data=h; /* 生成根结点(先序) */     CreateBiThrTree(&(*T)->lchild); /* 递归构造左子树 */     if((*T)->lchild) /* 有左孩子 */       (*T)->LTag=Link;     CreateBiThrTree(&(*T)->rchild); /* 递归构造右子树 */     if((*T)->rchild) /* 有右孩子 */       (*T)->RTag=Link;   }   return OK; } BiThrTree pre; /* 全局变量,始终指向刚刚访问过的结点 */ void InThreading(BiThrTree p) { /* 中序遍历进行中序线索化。算法6.7 */   if(p)   {     InThreading(p->lchild); /* 递归左子树线索化 */     if(!p->lchild) /* 没有左孩子 */     {       p->LTag=Thread; /* 前驱线索 */       p->lchild=pre; /* 左孩子指针指向前驱 */     }     if(!pre->rchild) /* 前驱没有右孩子 */     {       pre->RTag=Thread; /* 后继线索 */       pre->rchild=p; /* 前驱右孩子指针指向后继(当前结点p) */     }     pre=p; /* 保持pre指向p的前驱 */     InThreading(p->rchild); /* 递归右子树线索化 */   } } Status InOrderThreading(BiThrTree *Thrt,BiThrTree T) { /* 中序遍历二叉树T,并将其中序线索化,Thrt指向头结点。算法6.6 */   *Thrt=(BiThrTree)malloc(sizeof(BiThrNode));   if(!*Thrt)     exit(OVERFLOW);   (*Thrt)->LTag=Link; /* 建头结点 */   (*Thrt)->RTag=Thread;   (*Thrt)->rchild=*Thrt; /* 右指针回指 */   if(!T) /* 若二叉树空,则左指针回指 */     (*Thrt)->lchild=*Thrt;   else   {     (*Thrt)->lchild=T;     pre=*Thrt;     InThreading(T); /* 中序遍历进行中序线索化 */     pre->rchild=*Thrt;     pre->RTag=Thread; /* 最后一个结点线索化 */     (*Thrt)->rchild=pre;   }   return OK; } Status InOrderTraverse_Thr(BiThrTree T,Status(*Visit)(TElemType)) { /* 中序遍历二叉线索树T(头结点)的非递归算法。算法6.5 */   BiThrTree p;   p=T->lchild; /* p指向根结点 */   while(p!=T)   { /* 空树或遍历结束时,p==T */     while(p->LTag==Link)       p=p->lchild;     if(!Visit(p->data)) /* 访问其左子树为空的结点 */       return ERROR;     while(p->RTag==Thread&&p->rchild!=T)     {       p=p->rchild;       Visit(p->data); /* 访问后继结点 */     }     p=p->rchild;   }   return OK; }
/* main6-3.c 检验bo6-3.c的主程序 */ #define CHAR 1 /* 字符型 */ /*#define CHAR 0 /* 整型(二者选一) */ #if CHAR   typedef char TElemType;   TElemType Nil=' '; /* 字符型以空格符为空 */ #else   typedef int TElemType;   TElemType Nil=0; /* 整型以0为空 */ #endif #include"c1.h" #include"c6-3.h" #include"bo6-3.c" Status vi(TElemType c) { #if CHAR   printf("%c ",c); #else   printf("%d ",c); #endif   return OK; } void main() {   BiThrTree H,T; #if CHAR   printf("请按先序输入二叉树(如:ab三个空格表示a为根结点,b为左子树的二叉树)\n"); #else   printf("请按先序输入二叉树(如:1 2 0 0 0表示1为根结点,2为左子树的二叉树)\n"); #endif   CreateBiThrTree(&T); /* 按先序产生二叉树 */   InOrderThreading(&H,T); /* 中序遍历,并中序线索化二叉树 */   printf("中序遍历(输出)二叉线索树:\n");   InOrderTraverse_Thr(H,vi); /* 中序遍历(输出)二叉线索树 */   printf("\n"); }

 

转载于:https://www.cnblogs.com/cpoint/p/3479823.html

你可能感兴趣的文章
Keil 4.0 生成bin文件
查看>>
sql语句的进化--hibernate篇
查看>>
python爬虫之cookie
查看>>
11.超市收银系统的项目
查看>>
2017年5月29号课堂笔记
查看>>
HDU4247【瞎搞】
查看>>
lightoj 1125【背包·从n个选m个】
查看>>
HDU 1243 反恐训练营(最长公共序列)
查看>>
mysql数据库隔离级别
查看>>
(六)buildroot使用详解
查看>>
chrome修改UserAgent,调试
查看>>
Source Insight4.0 试用。。试用。。试用。。
查看>>
python循环for,range,xrange;while
查看>>
hadoop的节点间的通信
查看>>
HashMap
查看>>
mysql 主从 重新同步
查看>>
论如何制做一个工程APP的测试内容
查看>>
如何通过Java启动linux脚本
查看>>
linux系统调用之网络管理2
查看>>
三种样式表插入方法
查看>>