先序遍历的非递归算法

上传人:壹****1 文档编号:496301759 上传时间:2022-08-24 格式:DOC 页数:6 大小:41.50KB
返回 下载 相关 举报
先序遍历的非递归算法_第1页
第1页 / 共6页
先序遍历的非递归算法_第2页
第2页 / 共6页
先序遍历的非递归算法_第3页
第3页 / 共6页
先序遍历的非递归算法_第4页
第4页 / 共6页
先序遍历的非递归算法_第5页
第5页 / 共6页
点击查看更多>>
资源描述

《先序遍历的非递归算法》由会员分享,可在线阅读,更多相关《先序遍历的非递归算法(6页珍藏版)》请在金锄头文库上搜索。

1、121、先序遍历的非递归算法。用c语言写。 void PreOrderUnrec(Bitree t)SqStack s;StackInit(s);p=t;while (p!=null | !StackEmpty(s)while (p!=null) /遍历左子树visite(p-data);push(s,p);p=p-lchild; /endwhileif (!StackEmpty(s) /通过下一次循环中的内嵌while实现右子树遍历p=pop(s);p=p-rchild; /endif/endwhile /PreOrderUnrec/#include stdio.h#include stdl

2、ib.h#include string.h#define null 0struct node char data; struct node *lchild; struct node *rchild;/先序,中序 建树struct node *create(char *pre,char *ord,int n) struct node * head; int ordsit; head=null; if(ndata=*pre; head-lchild=head-rchild=null; ordsit=0; while(ordordsit!=*pre) ordsit+; head-lchild=cre

3、ate(pre+1,ord,ordsit); head-rchild=create (pre+ordsit+1,ord+ordsit+1,n-ordsit-1); return head; /中序递归遍历void inorder(struct node *head) if(!head) return; else inorder(head-lchild ); printf(%c,head-data ); inorder(head-rchild ); /中序非递归遍历void inorder1(struct node *head) struct node *p; struct node *stac

4、k20; int top=0; p=head; while(p|top!=0) while (p) stacktop+=p; p=p-lchild ; p=stack-top; printf(%c ,p-data ); p=p-rchild ; /二叉树前序、中序、后序三种遍历的非递归算法1.先序遍历非递归算法void PreOrderUnrec(Bitree *t) Stack s; StackInit(s); Bitree *p=t; while (p!=NULL | !StackEmpty(s) while (p!=NULL) /遍历左子树 visite(p-data); push(s,

5、p); p=p-lchild; if (!StackEmpty(s) /通过下一次循环中的内嵌while实现右子树遍历 p=pop(s); p=p-rchild; /endif /endwhile 2.中序遍历非递归算法void InOrderUnrec(Bitree *t) Stack s; StackInit(s); Bitree *p=t; while (p!=NULL | !StackEmpty(s) while (p!=NULL) /遍历左子树 push(s,p); p=p-lchild; if (!StackEmpty(s) p=pop(s); visite(p-data); /访

6、问根结点 p=p-rchild; /通过下一次循环实现右子树遍历 /endif /endwhile3.后序遍历非递归算法typedef enumL,R tagtype;typedef struct Bitree ptr; tagtype tag;stacknode;typedef struct stacknode Elemmaxsize; int top;SqStack;void PostOrderUnrec(Bitree t) SqStack s; stacknode x; StackInit(s); p=t; do while (p!=null) /遍历左子树 x.ptr = p; x.t

7、ag = L; /标记为左子树 push(s,x); p=p-lchild; while (!StackEmpty(s) & s.Elems.top.tag=R) x = pop(s); p = x.ptr; visite(p-data); /tag为R,表示右子树访问完毕,故访问根结点 if (!StackEmpty(s) s.Elems.top.tag =R; /遍历右子树 p=s.Elems.top.ptr-rchild; while (!StackEmpty(s);/PostOrderUnrec 二。前序最简洁算法void PreOrderUnrec(Bitree *t) Bitree

8、 *p; Stack s; s.push(t); while (!s.IsEmpty() s.pop(p); visit(p-data); if (p-rchild != NULL) s.push(p-rchild); if (p-lchild != NULL) s.push(p-lchild); 三。后序算法之二void BT_PostOrderNoRec(pTreeT root) stack s; pTreeT pre=NULL;while (NULL != root) | !s.empty() if (NULL != root) s.push(root); root = root-left; else root = s.top(); if (root-right!=NULL & pre!=root-right) root=root-right; else root=pre=s.top(); visit(root); s.pop(); root=NULL;

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 商业/管理/HR > 营销创新

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号