PTA二叉搜索树的操作集 (30分)

本题要求实现给定二叉搜索树的5种常用操作。

函数接口定义:

  1. BinTree Insert( BinTree BST, ElementType X );
  2. BinTree Delete( BinTree BST, ElementType X );
  3. Position Find( BinTree BST, ElementType X );
  4. Position FindMin( BinTree BST );
  5. Position FindMax( BinTree BST );

其中BinTree结构定义如下:

  1. typedef struct TNode *Position;
  2. typedef Position BinTree;
  3. struct TNode{
  4. ElementType Data;
  5. BinTree Left;
  6. BinTree Right;
  7. };
  • 函数Insert将X插入二叉搜索树BST并返回结果树的根结点指针;
  • 函数Delete将X从二叉搜索树BST中删除,并返回结果树的根结点指针;如果X不在树中,则打印一行Not Found并返回原树的根结点指针;
  • 函数Find在二叉搜索树BST中找到X,返回该结点的指针;如果找不到则返回空指针;
  • 函数FindMin返回二叉搜索树BST中最小元结点的指针;
  • 函数FindMax返回二叉搜索树BST中最大元结点的指针。

裁判测试程序样例:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. typedef int ElementType;
  4. typedef struct TNode *Position;
  5. typedef Position BinTree;
  6. struct TNode{
  7. ElementType Data;
  8. BinTree Left;
  9. BinTree Right;
  10. };
  11. void PreorderTraversal( BinTree BT ); /* 先序遍历,由裁判实现,细节不表 */
  12. void InorderTraversal( BinTree BT ); /* 中序遍历,由裁判实现,细节不表 */
  13. BinTree Insert( BinTree BST, ElementType X );
  14. BinTree Delete( BinTree BST, ElementType X );
  15. Position Find( BinTree BST, ElementType X );
  16. Position FindMin( BinTree BST );
  17. Position FindMax( BinTree BST );
  18. int main()
  19. {
  20. BinTree BST, MinP, MaxP, Tmp;
  21. ElementType X;
  22. int N, i;
  23. BST = NULL;
  24. scanf("%d", &N);
  25. for ( i=0; i<N; i++ ) {
  26. scanf("%d", &X);
  27. BST = Insert(BST, X);
  28. }
  29. printf("Preorder:"); PreorderTraversal(BST); printf("\n");
  30. MinP = FindMin(BST);
  31. MaxP = FindMax(BST);
  32. scanf("%d", &N);
  33. for( i=0; i<N; i++ ) {
  34. scanf("%d", &X);
  35. Tmp = Find(BST, X);
  36. if (Tmp == NULL) printf("%d is not found\n", X);
  37. else {
  38. printf("%d is found\n", Tmp->Data);
  39. if (Tmp==MinP) printf("%d is the smallest key\n", Tmp->Data);
  40. if (Tmp==MaxP) printf("%d is the largest key\n", Tmp->Data);
  41. }
  42. }
  43. scanf("%d", &N);
  44. for( i=0; i<N; i++ ) {
  45. scanf("%d", &X);
  46. BST = Delete(BST, X);
  47. }
  48. printf("Inorder:"); InorderTraversal(BST); printf("\n");
  49. return 0;
  50. }
  51. /* 你的代码将被嵌在这里 */

输入样例:

  1. 10
  2. 5 8 6 2 4 1 0 10 9 7
  3. 5
  4. 6 3 10 0 5
  5. 5
  6. 5 7 0 10 3

输出样例:

  1. Preorder: 5 2 1 0 4 8 6 7 10 9
  2. 6 is found
  3. 3 is not found
  4. 10 is found
  5. 10 is the largest key
  6. 0 is found
  7. 0 is the smallest key
  8. 5 is found
  9. Not Found
  10. Inorder: 1 2 4 6 8 9

【程序实现】

  1. BinTree Insert( BinTree BST, ElementType X ) {
  2. if( !BST) {
  3. BST = (BinTree)malloc(sizeof(BinTree));
  4. BST->Data = X;
  5. BST->Left = BST->Right = NULL;
  6. return BST;
  7. }
  8. else if (X < BST->Data)
  9. BST->Left = Insert(BST->Left , X);
  10. else if(X > BST->Data)
  11. BST->Right = Insert(BST->Right , X);
  12. return BST;
  13. }
  14. Position Find( BinTree BST, ElementType X ) {
  15. if (!BST)
  16. return NULL;
  17. if (BST->Data == X)
  18. return BST;
  19. else if (X < BST->Data)
  20. return Find(BST->Left , X);
  21. else if(X > BST->Data)
  22. return Find(BST->Right , X);
  23. }
  24. Position FindMin( BinTree BST ) {
  25. if (BST)
  26. while(BST->Left)
  27. BST = BST->Left;
  28. return BST;
  29. }
  30. Position FindMax( BinTree BST ) {
  31. if (BST)
  32. while(BST->Right)
  33. BST = BST->Right;
  34. return BST;
  35. }
  36. BinTree Delete( BinTree BST, ElementType X ) {
  37. if (!BST)
  38. printf("Not Found\n");
  39. else {
  40. if (X < BST->Data)
  41. BST->Left = Delete(BST->Left , X);
  42. else if(X > BST->Data)
  43. BST->Right = Delete(BST->Right , X);
  44. else {
  45. if (BST->Left && BST->Right) {
  46. BinTree t = FindMin(BST->Right);
  47. BST->Data = t->Data;
  48. BST->Right = Delete(BST->Right , t->Data);
  49. }
  50. else {
  51. if (BST->Left)
  52. BST = BST->Left;
  53. else
  54. BST = BST->Right;
  55. }
  56. }
  57. }
  58. return BST;
  59. }

PTA二叉搜索树的操作集 (30分)的更多相关文章

  1. 04-树7 二叉搜索树的操作集(30 point(s)) 【Tree】

    04-树7 二叉搜索树的操作集(30 point(s)) 本题要求实现给定二叉搜索树的5种常用操作. 函数接口定义: BinTree Insert( BinTree BST, ElementType ...

  2. 二叉搜索树的结构(30 分) PTA 模拟+字符串处理 二叉搜索树的节点插入和非递归遍历

    二叉搜索树的结构(30 分) PTA 模拟+字符串处理 二叉搜索树的节点插入和非递归遍历   二叉搜索树的结构(30 分) 二叉搜索树或者是一棵空树,或者是具有下列性质的二叉树: 若它的左子树不空,则 ...

  3. PTA 7-2 二叉搜索树的结构(30 分)

    7-2 二叉搜索树的结构(30 分) 二叉搜索树或者是一棵空树,或者是具有下列性质的二叉树: 若它的左子树不空,则左子树上所有结点的值均小于它的根结点的值:若它的右子树不空,则右子树上所有结点的值均大 ...

  4. 二叉搜索树的结构(30 分) PTA 模拟+字符串处理 二叉搜索树的节点插入和非递归遍历

    二叉搜索树的结构(30 分) 二叉搜索树或者是一棵空树,或者是具有下列性质的二叉树: 若它的左子树不空,则左子树上所有结点的值均小于它的根结点的值:若它的右子树不空,则右子树上所有结点的值均大于它的根 ...

  5. [PTA] 数据结构与算法题目集 6-12 二叉搜索树的操作集

    唯一比较需要思考的删除操作: 被删除节点有三种情况: 1.叶节点,直接删除 2.只有一个子节点,将子节点替换为该节点,删除该节点. 3.有两个子节点,从右分支中找到最小节点,将其值赋给被删除节点的位置 ...

  6. L3-1 二叉搜索树的结构 (30 分)

    讲解的很不错的链接:https://blog.csdn.net/chudongfang2015/article/details/79446477#commentBox 题目链接:https://pin ...

  7. L3-016 二叉搜索树的结构 (30 分) 二叉树

    二叉搜索树或者是一棵空树,或者是具有下列性质的二叉树: 若它的左子树不空,则左子树上所有结点的值均小于它的根结点的值:若它的右子树不空,则右子树上所有结点的值均大于它的根结点的值:它的左.右子树也分别 ...

  8. L3-016 二叉搜索树的结构 (30 分)

    二叉搜索树或者是一棵空树,或者是具有下列性质的二叉树: 若它的左子树不空,则左子树上所有结点的值均小于它的根结点的值:若它的右子树不空,则右子树上所有结点的值均大于它的根结点的值:它的左.右子树也分别 ...

  9. L2-004 这是二叉搜索树吗? (25 分) (树)

    链接:https://pintia.cn/problem-sets/994805046380707840/problems/994805070971912192 题目: 一棵二叉搜索树可被递归地定义为 ...

随机推荐

  1. windows kubectl 远程操作k8s

    在windows 电脑上配置kubectl远程操作kubernetes 一.下载windows版的kubectl可执行文件 下载地址 二.创建.kube 建议使用git bash cd ~ mkdir ...

  2. 📝 没 2 年 React Native 开发经验,你都遇不到这些坑

    如果你喜欢我的文章,希望点赞 收藏 评论 三连支持一下,谢谢你,这对我真的很重要! React Native 开发时,如果只是写些简单的页面,基本上按着官方文档 reactnative.dev就能写出 ...

  3. github注册教程最新版(十年程序员保姆级教程)

    您可以在墨抒颖的网站体验本文章的纯净版 准备 拥有一个可以接受信息的邮箱即可 开始 点击github官网github step1.进入注册页面 点击Sign Up进入注册流程 step2.输入邮箱 这 ...

  4. Spring Boot中使用PostgreSQL数据库

    在如今的关系型数据库中,有两个开源产品是你必须知道的.其中一个是MySQL,相信关注我的小伙伴们一定都不陌生,因为之前的Spring Boot关于关系型数据库的所有例子都是对MySQL来介绍的.而今天 ...

  5. 一个简单的单例模式Demo

    /** * @author :nx014924 * @date :Created in 5/30/2021 1:09 PM * @description: * @modified By: * @ver ...

  6. Java(46)类加载器

    作者:季沐测试笔记 原文地址:https://www.cnblogs.com/testero/p/15201673.html 博客主页:https://www.cnblogs.com/testero ...

  7. NX开发库版本问题

    有做NX二次开发的朋友经常问我这样的问题:我在NX8.0上开发的程序,可以在NX9.0上运行吗? 由于NX的开发库随着版本的更新也会不断更新,会增加新的方法,同时有些也会过时或者消失. 如下图:NX8 ...

  8. 7-Zip

    7-Zip https://www.7-zip.org/

  9. 4.7 80--删除排序数组中的重复项 II

    因为python的list可以直接del List[index],因此直接使用了暴力方法,判断是否重复了两次,是的话直接使用del. 在转向使用Java时,因为暴力方法的局限,一直在找怎样对Java的 ...

  10. 【UE4 C++】UObject 创建、销毁、内存管理

    UObject 的创建 NewObject 模板类 本例使用 UE 4.26,只剩下 NewObject 用来创建 UObject,提供两个带不同可选参数构造函数的模板类 Outer 表示这个对象的外 ...