首页 > 代码库 > 二叉树的遍历及线索二叉树
二叉树的遍历及线索二叉树
"."代表空树,程序分别以先序、中序和后序的方式递归遍历二叉树,再以中序非递归的方式遍历二叉树,并以中序递归方式输出叶子结点并统计叶子结点的个数。最后将二叉树线索化并中序遍历线索二叉树。
#include "stdio.h" #include "stdlib.h" typedef struct bithrnode { char data; int ltag,rtag; struct bithrnode *lchild,*rchild; }BithrNODE; int link=0; int thread=1; int N0=0; BithrNODE *pre; BithrNODE *BithrCreat() { char x; BithrNODE *p=NULL; scanf("%c",&x); if(x=='.') return NULL; p=(BithrNODE *)malloc(sizeof(BithrNODE)); p->data=http://www.mamicode.com/x;>
二叉树的遍历及线索二叉树
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。