二叉樹的操作

2021-06-01 02:24:07 字數 723 閱讀 1052

來自於:

#include

#include

typedef struct node

node;

int count;

node *crt_bt_pre() /*按先序遍歷序列建立二叉樹的二叉鍊錶*/

return(bt);

}void preorder(node *bt) /*先序遍歷二叉樹*/

}void inorder(node *bt) /*中序遍歷二叉樹*/

}void postorder(node *bt) /*後序遍歷二叉樹*/

}void countleaf(node *bt) /*統計二叉樹中葉子結點個數*/

countleaf(bt->lchild);

countleaf(bt->rchild);} }

int countnode(node *bt) /*統計二叉樹中結點總數*/

}int treedepth(node *bt) /*求二叉樹的深度*/

}main()

else if(choice=='2')

else if(choice=='3')

else if(choice=='4')

else if(choice=='5')

else if(choice=='6')

else if(choice=='7')

else if(choice=='0') break;}}

二叉樹 二叉樹的相關操作

遞迴實現 建立求樹高 求葉子數 求節點數 統計度為2的結點個數 後序輸出 先序輸出 中序輸出 交換左右子樹 include include include define true 1 define false 0 define ok 1 define error 0 define overflow ...

二叉樹操作

最近在溫習資料結構,把書中的 寫了一遍,下面是二叉樹的基本操作,包括 1 四種遍歷二叉樹的方法 前序遍歷 中序遍歷 後序遍歷和層序遍歷,其中又包括了遞迴的和非遞迴 2 兩種建立二叉樹的方法 根據二叉樹的前序和中序序列建立二叉樹和根據二叉樹的中序後序序列建立二叉樹。1.二叉樹的儲存結構 headfil...

二叉樹操作

本文章主要包括了以下內容 建立二叉樹類。二叉樹的儲存結構使用鍊錶。供操作 前序遍歷 中序遍歷 後序遍歷 層次遍歷 計算二叉樹結點數目 計算二叉樹高度。接收鍵盤錄入的二叉樹前序序列和中序序列 各元素各不相同 輸出該二叉樹的後序序列。下面是c include include include using ...