usingnamespacestd;#defineNULL0#defineOK1#defineOVE">
二叉樹遍歷源代碼(通過vc6.0編譯).doc

二叉樹遍歷源代碼(通過vc6.0編譯).doc

ID:55557967

大小:16.00 KB

頁數(shù):4頁

時間:2020-05-17

二叉樹遍歷源代碼(通過vc6.0編譯).doc_第1頁
二叉樹遍歷源代碼(通過vc6.0編譯).doc_第2頁
二叉樹遍歷源代碼(通過vc6.0編譯).doc_第3頁
二叉樹遍歷源代碼(通過vc6.0編譯).doc_第4頁
資源描述:

《二叉樹遍歷源代碼(通過vc6.0編譯).doc》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。

1、#include"iostream.h"#include"stdlib.h"#include"stdio.h"#includeusingnamespacestd;#defineNULL0#defineOK1#defineOVERFLOW-1typedefintStatus;typedefstructnode{chardata;structnode*lchild;structnode*rchild;}*bitree;intk=0;intdepth(bitreeT)//樹的高度{if(!T)return0;else{intm=depth(T->lch

2、ild);intn=depth(T->rchild);return(m>n?m:n)+1;}}//先序,中序建樹structnode*create(char*pre,char*ord,intn){structnode*T;intm;T=NULL;if(n<=0){returnNULL;}else{m=0;T=new(structnode);T->data=*pre;T->lchild=T->rchild=NULL;while(ord[m]!=*pre)m++;T->lchild=create(pre+1,ord,m);T->rchild=create(pre+

3、m+1,ord+m+1,n-m-1);returnT;}}//中序遞歸遍歷voidinorder(structnode*T){if(!T)return;else{inorder(T->lchild);cout<data;inorder(T->rchild);}}voidinpre(structnode*T){if(!T)return;else{cout<data;inpre(T->lchild);inpre(T->rchild);}}voidpostorder(structnode*T){if(!T)return;else{postorder(

4、T->lchild);postorder(T->rchild);cout<data;}}//先序非遞歸遍歷voidinpre1(structnode*T){structnode*p;structnode*stack[20];inttop=0;p=T;cout<<"非遞歸先序?yàn)?"<

5、

6、top!=0){while(p){stack[top++]=p;cout<data;p=p->lchild;}p=stack[--top];p=p->rchild;}}//中序非遞歸遍歷voidinorder1(structnode*T)

7、{structnode*p;structnode*stack[20];inttop=0;p=T;cout<<"非遞歸中序?yàn)?"<

8、

9、top!=0){while(p){stack[top++]=p;p=p->lchild;}p=stack[--top];cout<data;p=p->rchild;}}//主函數(shù)intmain(){bitreeT;charpre[30],ord[30];intn,m;cout<<"請輸入先序?yàn)?+a*b%cd/ef的二叉樹:"<

10、d-e/f的二叉樹:"<

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動畫的文件,查看預(yù)覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對本文檔版權(quán)有爭議請及時聯(lián)系客服。
3. 下載前請仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡(luò)波動等原因無法下載或下載錯誤,付費(fèi)完成后未能成功下載的用戶請聯(lián)系客服處理。