6-12 二叉搜索树的操作集
本题要求实现给定二叉搜索树的5种常用操作。
函数接口定义:
1 2 3 4 5 | BinTree Insert( BinTree BST, ElementType X ); BinTree Delete( BinTree BST, ElementType X ); Position Find( BinTree BST, ElementType X ); Position FindMin( BinTree BST ); Position FindMax( BinTree BST ); |
其中BinTree
结构定义如下:
1 2 3 4 5 6 7 | typedef struct TNode *Position; typedef Position BinTree; struct TNode{ ElementType Data; BinTree Left; BinTree Right; }; |
- 函数
Insert
将X
插入二叉搜索树BST
并返回结果树的根结点指针; - 函数
Delete
将X
从二叉搜索树BST
中删除,并返回结果树的根结点指针;如果X
不在树中,则打印一行Not Found
并返回原树的根结点指针; - 函数
Find
在二叉搜索树BST
中找到X
,返回该结点的指针;如果找不到则返回空指针; - 函数
FindMin
返回二叉搜索树BST
中最小元结点的指针; - 函数
FindMax
返回二叉搜索树BST
中最大元结点的指针。
裁判测试程序样例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | #include <stdio.h> #include <stdlib.h> typedef int ElementType; typedef struct TNode *Position; typedef Position BinTree; struct TNode{ ElementType Data; BinTree Left; BinTree Right; }; void PreorderTraversal( BinTree BT ); /* 先序遍历,由裁判实现,细节不表 */ void InorderTraversal( BinTree BT ); /* 中序遍历,由裁判实现,细节不表 */ BinTree Insert( BinTree BST, ElementType X ); BinTree Delete( BinTree BST, ElementType X ); Position Find( BinTree BST, ElementType X ); Position FindMin( BinTree BST ); Position FindMax( BinTree BST ); int main() { BinTree BST, MinP, MaxP, Tmp; ElementType X; int N, i; BST = NULL; scanf ( "%d" , &N); for ( i=0; i<N; i++ ) { scanf ( "%d" , &X); BST = Insert(BST, X); } printf ( "Preorder:" ); PreorderTraversal(BST); printf ( "\n" ); MinP = FindMin(BST); MaxP = FindMax(BST); scanf ( "%d" , &N); for ( i=0; i<N; i++ ) { scanf ( "%d" , &X); Tmp = Find(BST, X); if (Tmp == NULL) printf ( "%d is not found\n" , X); else { printf ( "%d is found\n" , Tmp->Data); if (Tmp==MinP) printf ( "%d is the smallest key\n" , Tmp->Data); if (Tmp==MaxP) printf ( "%d is the largest key\n" , Tmp->Data); } } scanf ( "%d" , &N); for ( i=0; i<N; i++ ) { scanf ( "%d" , &X); BST = Delete(BST, X); } printf ( "Inorder:" ); InorderTraversal(BST); printf ( "\n" ); return 0; } /* 你的代码将被嵌在这里 */ |
输入样例:
1 2 3 4 5 6 | 10 5 8 6 2 4 1 0 10 9 7 5 6 3 10 0 5 5 5 7 0 10 3 |
输出样例:
1 2 3 4 5 6 7 8 9 10 | Preorder: 5 2 1 0 4 8 6 7 10 9 6 is found 3 is not found 10 is found 10 is the largest key 0 is found 0 is the smallest key 5 is found Not Found Inorder: 1 2 4 6 8 9 |
插入
错误代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | BinTree Insert( BinTree BST, ElementType X ){ if (BST==NULL){ BST=(Position) malloc ( sizeof ( struct TNode)); BST->Data=X; BST->Left=NULL; BST->Right=NULL; } if (BST->Data==X){ } else if (BST->Data>X){ Insert(BST->Left, X);<br> } else { Insert(BST->Right, X); } return BST; } |
正确代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | BinTree Insert( BinTree BST, ElementType X ){ if (BST==NULL){ BST=(Position) malloc ( sizeof ( struct TNode)); BST->Data=X; BST->Left=NULL; BST->Right=NULL; } else { if (BST->Data==X){ } else if (BST->Data>X){ BST->Left=Insert(BST->Left, X); } else { BST->Right=Insert(BST->Right, X); } } return BST; } |
查找
错误代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | Position Find( BinTree BST, ElementType X ){ if (BST==NULL){ return NULL; } if (BST->Data==X){ return BST; } else if (BST->Data>X){ Find(BST->Left,X); } else { Find(BST->Right,X); } return NULL; } |
正确代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | Position Find( BinTree BST, ElementType X ){ if (BST==NULL){ return NULL; } if (BST->Data==X){ return BST; } else if (BST->Data>X){ <strong> return </strong> Find(BST->Left,X); } else { <strong> return </strong> Find(BST->Right,X); } return NULL; } |
删除
注意此处是否free空间都可以通过(AC)。
错误代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | BinTree Delete( BinTree BST, ElementType X ){ if (BST==NULL){ printf ( "Not Found\n" ); } else { if (BST->Data==X){ if (BST->Left==NULL&&BST->Right==NULL){ Position tmp; tmp=BST; BST=NULL; free (tmp); } if ((BST->Left==NULL&&BST->Right!=NULL)){ Position tmp; tmp=BST; BST=BST->Right; free (tmp); } if ((BST->Left!=NULL&&BST->Right==NULL)){ Position tmp; tmp=BST; BST=BST->Left; free (tmp); } if (BST->Left!=NULL && BST->Right!=NULL){ BinTree tmp=FindMax(BST->Left); BST->Data=tmp->Data; BST->Left=Delete(BST->Left, tmp->Data); } } else if (BST->Data>X){ BST->Left=Delete(BST->Left, X); } else { BST->Right=Delete(BST->Right, X); } } return BST; } |
正确代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | BinTree Delete( BinTree BST, ElementType X ){ if (BST==NULL){ printf ( "Not Found\n" ); } else { if (BST->Data==X){ if (BST->Left==NULL&&BST->Right==NULL){ Position tmp; tmp=BST; BST=NULL; <strong> free (tmp);</strong> } <strong> else if </strong>((BST->Left==NULL&&BST->Right!=NULL)){ Position tmp; tmp=BST; BST=BST->Right; <strong> free (tmp);</strong> } <strong> else if </strong>((BST->Left!=NULL&&BST->Right==NULL)){ Position tmp; tmp=BST; BST=BST->Left; <strong> free (tmp);</strong> } <strong> else if </strong>(BST->Left!=NULL && BST->Right!=NULL){ BinTree tmp=FindMax(BST->Left); BST->Data=tmp->Data; BST->Left=Delete(BST->Left, tmp->Data); } } else if (BST->Data>X){ BST->Left=Delete(BST->Left, X); } else { BST->Right=Delete(BST->Right, X); } } return BST; } |
查找最大和最小:
错误代码:
1 2 3 4 5 6 7 8 9 10 11 12 | Position FindMin( BinTree BST ){ while (BST->Left!=NULL){ BST=BST->Left; } return BST; } Position FindMax( BinTree BST ){ while (BST->Right!=NULL){ BST=BST->Right; } return BST; } |
正确代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | Position FindMin( BinTree BST ){ <strong> if (BST==NULL){ return NULL; }</strong> while (BST->Left!=NULL){ BST=BST->Left; } return BST; } Position FindMax( BinTree BST ){ <strong> if (BST==NULL){ return NULL; }</strong> while (BST->Right!=NULL){ BST=BST->Right; } return BST; } |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 【杭电多校比赛记录】2025“钉耙编程”中国大学生算法设计春季联赛(1)