實(shí)驗(yàn)四 二叉樹的建立與遍歷_第1頁
實(shí)驗(yàn)四 二叉樹的建立與遍歷_第2頁
實(shí)驗(yàn)四 二叉樹的建立與遍歷_第3頁
實(shí)驗(yàn)四 二叉樹的建立與遍歷_第4頁
實(shí)驗(yàn)四 二叉樹的建立與遍歷_第5頁
已閱讀5頁,還剩3頁未讀 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

1、實(shí)驗(yàn)四 二叉樹的建立與遍歷【實(shí)驗(yàn)?zāi)康摹縧 掌握二叉樹的定義、性質(zhì)及存儲方式,各種遍歷算法?!緦?shí)驗(yàn)內(nèi)容】采用二叉樹鏈表作為存儲結(jié)構(gòu),完成二叉樹的建立,先序、中序和后序遍歷的遞歸操作。分別求所有葉子結(jié)點(diǎn)及結(jié)點(diǎn)總數(shù)的操作。 提示:設(shè)計(jì)一顆二叉樹,輸入完全二叉樹的先序序列,用#代表虛結(jié)點(diǎn)(空指針),如ABD#CE#F#,建立二叉樹,求出先序、中序和后序遍歷序列,求所有葉子及結(jié)點(diǎn)總數(shù)。【程序源代碼】#include<stdio.h>#include<stdlib.h>typedef char TElemType;typedef int Status;#define OK 1#de

2、fine ERROR 0#define OVERFLOW 0typedef struct BiTNode TElemType data;struct BiTNode *lchild, *rchild;BiTNode , *BiTree;Status CreateBiTree(BiTree &BT);void CountLeaves(BiTree BT, int &count);int NodeCount(BiTree BT);void PreOrder(BiTree BT);void InOrder(BiTree BT);void PostOrder(BiTree BT);in

3、t main()BiTree BT;int choice,cho;int logo = 1;printf("輸入二叉樹結(jié)點(diǎn),以'#'為空指針n");CreateBiTree(BT);do printf("t 1:遍歷二叉樹n"); printf("t 2:二叉樹總結(jié)點(diǎn)數(shù)及葉子節(jié)點(diǎn)數(shù)n"); printf("t 3:退出程序n "); printf("t 輸入選項(xiàng): "); scanf("%2d",&choice); switch(choice) cas

4、e 1: printf("1:先序遍歷n"); printf("2:中序遍歷n"); printf("3:后序遍歷n"); scanf("%2d",&cho); switch(cho) case 1: PreOrder(BT); printf("n"); break;case 2: InOrder(BT); printf("n"); break; case 3: PostOrder( BT); printf("n"); break; default

5、: printf("輸入錯誤!n"); break;case 2: int count; printf("總結(jié)點(diǎn)數(shù)為:%2dn", NodeCount(BT); CountLeaves(BT, count); printf("葉子結(jié)點(diǎn)數(shù)為:%2dn", count); break;case 3 :exit(0);break;default:printf("輸入錯誤!n"); while(logo=1);return 0;Status CreateBiTree(BiTree &BT)char ch;scanf

6、("%c", &ch);if (ch = '#') BT = NULL;elseif (!(BT = (BiTree)malloc(sizeof(BiTNode)exit(OVERFLOW);BT->data = ch;CreateBiTree(BT->lchild);CreateBiTree(BT->rchild);return OK;void PreOrder(BiTree BT)if (BT != NULL)printf("%c ", BT->data);PreOrder(BT->lchild)

7、;PreOrder(BT->rchild);void InOrder(BiTree BT)if (BT != NULL)PreOrder(BT->lchild);printf("%c ", BT->data);PreOrder(BT->rchild);void PostOrder(BiTree BT)if (BT != NULL)PreOrder(BT->lchild);PreOrder(BT->rchild);printf("%c ", BT->data);void CountLeaves(BiTree BT,int &count)if (BT)if (!BT->lchild && !BT->rchild)count+;CountLeaves(BT->lchild, count);CountLeaves(BT->rchild, count);int NodeCount(BiTree BT)/統(tǒng)計(jì)總結(jié)點(diǎn)數(shù) if (BT = NULL)return 0;elsereturn (NodeCount(BT->lchild) + NodeCount(BT->rchild) + 1);【運(yùn)行結(jié)果分析

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論