問題及描述:
/*
煙台大學計算機學院
檔名稱:a.cpp
完成日期:2023年11月26日
(2)輸出用括號法表示的二叉排序樹;
(3)用遞迴演算法和非遞迴演算法查詢關鍵字55;
(4)分別刪除43和55,輸出刪除後用括號法表示的二叉排序樹。
輸入描述:無
輸出描述:測試操作後的結果
*/
#include #include typedef int keytype;
typedef char infotype[10];
typedef struct node //記錄型別
bstnode;
//在p所指向的二叉排序樹中,插入值為k的節點
int insertbst(bstnode *&p,keytype k)
else if (k==p->key) //樹中存在相同關鍵字的結點,返回0
return 0;
else if (kkey)
return insertbst(p->lchild,k); //插入到*p的左子樹中
else
return insertbst(p->rchild,k); //插入到*p的右子樹中
}
//由有n個元素的陣列a,建立乙個二叉排序樹
bstnode *createbst(keytype a,int n) //返回bst樹根結點指標
}
}
//在bt指向的節點為根的排序二叉樹中,查詢值為k的節點。找不到返回null
bstnode *searchbst(bstnode *bt,keytype k)
//二叉排序樹中查詢的非遞迴演算法
bstnode *searchbst1(bstnode *bt,keytype k)
return null;
}
void delete1(bstnode *p,bstnode *&r) //當被刪*p結點有左右子樹時的刪除過程
}
void delete(bstnode *&p) //從二叉排序樹中刪除*p結點
else if (p->lchild==null) //*p結點沒有左子樹的情況
else delete1(p,p->lchild); //*p結點既沒有左子樹又沒有右子樹的情況
}
int deletebst(bstnode *&bt, keytype k) //在bt中刪除關鍵字為k的結點
}
}
int main()
;
bt=createbst(a,n);
bt1=createbst(a,n);
printf("bst:");
dispbst(bt);
printf("\n");
printf("遞迴查詢: %d\n",searchbst(bt,x)->key);
printf("非遞迴查詢: %d\n",searchbst1(bt,x)->key);
printf("刪除%d結點\n",x);
if (searchbst(bt,x)!=null)
printf("刪除%d結點\n",y);
if (searchbst(bt1,y)!=null)
return 0;
}
執行結果:
學習心得:
通過驗算,這次學習到了二叉排序樹。
第十三周專案1(3)
檔名稱 作 者 胡昌星 完成日期 2016年5月25號 版 本 號 v6.0 問題描述 閱讀專案 虛析構函式 輸入描述 無 程式輸出 includeusing namespace std class cfraction 類與類的加 減 乘 除運算 cfraction operator cfracti...
第十三周專案1(3)
煙台大學計算機學院 檔名稱 xiangmu.cpp 完成日期 2017年11月26日 2 輸出用括號法表示的二叉排序樹 3 用遞迴演算法和非遞迴演算法查詢關鍵字55 4 分別刪除43和55,輸出刪除後用括號法表示的二叉排序樹。輸入描述 無 輸出描述 測試操作後的結果 include include ...
十三周專案3
輸入描述 無 輸出描述 實驗資料 main函式 include include include graph.h define maxsize 100 void ppath int path,int i,int v 前向遞迴查詢路徑上的頂點 void dispath int dist,int path...