当前位置:   article > 正文

C语言-二叉搜索树的常用操作和复杂度分析_二叉树的插入和查找复杂度

二叉树的插入和查找复杂度

一、二叉搜索树的定义

      一个二叉树,对于每一个节点X均满足X的左子树所有节点的值比X小,右子树所有节点的值比X大,且左、右子树均为二叉搜索树,那么这种树称为二叉搜索树

二叉搜索树的存储结构和操作

  1. typedef struct treenode {
  2. int data;
  3. struct treenode* left;
  4. struct treenode* right;
  5. }treenode;
  6. treenode* empty(treenode* root);//初始化
  7. treenode* find(treenode* root, int x);//查找
  8. treenode* findmax(treenode* root);//查找最大值
  9. treenode* findmin(treenode* root);//查找最小值
  10. void insert(treenode** root, int x);//插入节点
  11. void delete(treenode** root, int x);//删除节点

二、二叉搜索树的相关操作

1.初始化操作:利用递归清空树

代码:

  1. //利用递归完成树的初始化(清空树)
  2. treenode* empty(treenode* root) {
  3. if (root != NULL) {
  4. empty(root->left);
  5. empty(root->right);
  6. free(root);
  7. }
  8. return NULL;
  9. }

2.查找值

思路:先考察root节点,若值相等则返回;如果x>root->data,向右侧寻找,反之向左侧找

代码:

  1. //查找树中元素。如果有,返回指向该节点的指针,如果没有返回NULL
  2. treenode* find(treenode* root, int x) {
  3. if (root == NULL) return NULL;
  4. if (x > root->data) {
  5. return find(root->right, x);
  6. }
  7. else if (x < root->data) {
  8. return find(root->left, x);
  9. }
  10. else return root;
  11. }

3.查找最大、最小值

思路和上一个比较像。这里查找最大值用递归实现,查找最小值用非递归方式

代码:

  1. //查找树中最大/最小元素,返回指向该节点的指针
  2. //利用递归找到最大
  3. treenode* findmax(treenode* root) {
  4. if (root != NULL){
  5. if (root->right != NULL) {
  6. return findmax(root->right);
  7. }
  8. else {
  9. return root;
  10. }
  11. }
  12. return NULL;
  13. }
  14. //利用非递归找到最小
  15. treenode* findmin(treenode* root) {
  16. if(root!=NULL){
  17. while (root->left != NULL) {
  18. root = root->left;
  19. }
  20. return root;
  21. }
  22. return NULL;
  23. }

4.插入节点

插入节点时,可以像find那样沿着树上寻找合适的位置。如果找到和x值一样的节点,则什么都不用作(或者做一些“更新”)。否则,将这个值插到遍历的路径的最后一点上。下图是一个简单演示,假如我们要插入一个新的节点,它的值为5:

具体代码:

  1. //插入节点操作
  2. void insert(treenode** root, int x) {
  3. if ((*root) == NULL) {
  4. (*root) = (treenode*)malloc(sizeof(treenode));
  5. (*root)->data = x;
  6. (*root)->left = NULL;
  7. (*root)->right = NULL;
  8. }
  9. else {
  10. if (x > (*root)->data) insert(&(*root)->right, x);
  11. else if (x < (*root)->data) insert(&(*root)->left, x);
  12. //如果x==root->data说明树中已经有该节点,不再插入
  13. }
  14. }

 (注意此次函数值传递,应当是root的地址,即类型为treenode**)

5.删除节点

和以上操作相比,删除节点显得较为复杂。

节点情况可以分为以下几类:

(1)没有子节点: 它可以被立即清除

(2)有一个子节点:可以在其父节点调整指针绕过该节点后删除。具体而言,可以把当前节点的非空子节点赋成该节点,在释放这个节点。可以由以下几行实现:  

  1. temp = *root;
  2. if((*root)->left) (*root) = (*root)->left;
  3. else (*root)=(*root)->right;
  4. free(temp);

有一个子节点的示意图,删除左图节点4

(3)有两个子节点:一般的删除策略是用其右子树的最小的数据代替该节点的值,并继续递归调用delete函数将那个右子树最小数据节点删除。注意这里替代品为右子树的最小数据,如果使用的是全树最小数据可能会使节点的左右子节点的值都大于该节点的值。示意图如下:

有两个子节点的示意图,删除左图节点2

整个删除节点操作的代码:

  1. void delete(treenode** root, int x) {
  2. treenode* temp = (treenode*)malloc(sizeof(treenode));
  3. if ((*root) != NULL) {
  4. if ((*root)->data > x) {
  5. delete(&(*root)->left, x);
  6. }
  7. else if ((*root)->data < x) {
  8. delete(&(*root)->right, x);
  9. }
  10. else {
  11. if ((*root)->left && (*root)->right) {//左右子节点都存在
  12. temp = findmin((*root)->right);
  13. (*root)->data = temp->data;
  14. delete(&(*root)->right, temp->data);
  15. }
  16. else {//只有一个或没有子节点
  17. temp = *root;
  18. if ((*root)->left) {
  19. (*root) = (*root)->left;
  20. }
  21. else {
  22. (*root) = (*root)->right;
  23. }
  24. free(temp);
  25. }
  26. }
  27. }
  28. }

(第二部分的完整代码及测试使用的main函数放在文末)

三、二叉搜索树的理论分析

1.时间复杂度

(1).最好情况分析:假设有N个节点排成完全二叉树,则树的高度为是[log2(N)]+1,时间复杂度为O(logN)级别;

(2).最坏情况分析:N个节点是按序输入的,导致排成一串。此时时间复杂度为O(N)级别。

(3).平均情况分析:

不难发现,这些操作的时间复杂度都是O(d)的,其中d为被访问节点的深度。在具体计算之前,我们先做出一个假设,即所有的树出现的机会相等。在这个前提下,二叉搜索树的时间复杂度就是树所有节点的平均深度。

定义:内部路径长:一棵树所有节点的深度和。

我们知道了一棵有N个节点的树的内部路径长,除以N即为这棵树所有节点的平均深度。

令D(N)是具有N个节点的某棵树T的内部路径长,D(1)=0。这个树是由含有i个节点的左子树和含有N-i-1个节点的右子树组成的。它们的内部路径长分别为D(i)和D(N-i-1)。对于全树,这些由于根节点和左右节点也有连接,所以左右子树所有节点的深度都要加1。由此得到递归关系:

如果所有子树的大小都等可能的出现,那么D(i)和D(N-i-1)的平均值都是,得到公式

进行一些简单的变形:

上下相减,得到:

 同时除以(N+1)(N+2)并裂项求和:

可以看到,当N足够大时,等式右侧是调和级数,我们有公式:

其中γ欧拉常数,约为0.5772156649

由于我们只关心D(N)的数量级,所有可以得到D(N)=O(NlnN),因此我们得到二叉搜索树相关操作的时间复杂度为O(logN)级别。

值得注意的是,以上分析仅为在一定假设下完成的分析。对于频繁使用删除操作的二叉搜索树,上述假设并不成立,因为我们对有两个子节点的节点删除策略是使用右子树的最小节点代替,可能导致假设中的等可能性出现问题。解决这一问题的方法是把这棵树加上平衡条件。不过,在多数情况下我们还是可以认为二叉搜索树相关操作的时间复杂度为O(logN)级别的。

2.空间复杂度:O(N)

(附:第二部分的完整代码,在vs2022中经过测试运行)

  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. typedef struct treenode {
  4. int data;
  5. struct treenode* left;
  6. struct treenode* right;
  7. }treenode;
  8. treenode* empty(treenode* root);
  9. treenode* find(treenode* root, int x);
  10. treenode* findmax(treenode* root);
  11. treenode* findmin(treenode* root);
  12. void insert(treenode** root, int x);
  13. void delete(treenode** root, int x);
  14. int main() {
  15. treenode* root=NULL,*temp=(treenode*)malloc(sizeof(treenode));
  16. insert(&root, 1);
  17. insert(&root, 5);
  18. insert(&root, 3);
  19. insert(&root, 4);
  20. insert(&root, 2);
  21. insert(&root, 2);
  22. insert(&root, 11);
  23. temp = find(root, 4);
  24. if(temp) printf("%d ", temp->data);
  25. temp = find(root, 12);
  26. if(!temp) printf("not found!");
  27. temp = findmax(root);
  28. printf("%d ", temp->data);
  29. temp = findmin(root);
  30. printf("%d ", temp->data);
  31. delete(&root, 5);
  32. delete(&root, 3);
  33. delete(&root, 1);
  34. delete(&root, 11);
  35. temp = findmax(root);
  36. printf("%d ", temp->data);
  37. temp = findmin(root);
  38. printf("%d ", temp->data);
  39. return 0;
  40. }
  41. //利用递归完成树的初始化(清空树)
  42. treenode* empty(treenode* root) {
  43. if (root != NULL) {
  44. empty(root->left);
  45. empty(root->right);
  46. free(root);
  47. }
  48. return NULL;
  49. }
  50. //查找树中元素。如果有,返回指向该节点的指针,如果没有返回NULL
  51. treenode* find(treenode* root, int x) {
  52. if (root == NULL) return NULL;
  53. if (x > root->data) {
  54. return find(root->right, x);
  55. }
  56. else if (x < root->data) {
  57. return find(root->left, x);
  58. }
  59. else return root;
  60. }
  61. //查找树中最大/最小元素,返回指向该节点的指针
  62. //利用递归找到最大
  63. treenode* findmax(treenode* root) {
  64. if (root != NULL){
  65. if (root->right != NULL) {
  66. return findmax(root->right);
  67. }
  68. else {
  69. return root;
  70. }
  71. }
  72. return NULL;
  73. }
  74. //利用非递归找到最小
  75. treenode* findmin(treenode* root) {
  76. if(root!=NULL){
  77. while (root->left != NULL) {
  78. root = root->left;
  79. }
  80. return root;
  81. }
  82. return NULL;
  83. }
  84. //插入节点操作
  85. void insert(treenode** root, int x) {
  86. if ((*root) == NULL) {
  87. (*root) = (treenode*)malloc(sizeof(treenode));
  88. (*root)->data = x;
  89. (*root)->left = NULL;
  90. (*root)->right = NULL;
  91. }
  92. else {
  93. if (x > (*root)->data) insert(&(*root)->right, x);
  94. else if (x < (*root)->data) insert(&(*root)->left, x);
  95. //如果x==root->data说明树中已经有该节点,不再插入
  96. }
  97. }
  98. //删除节点操作
  99. void delete(treenode** root, int x) {
  100. treenode* temp = (treenode*)malloc(sizeof(treenode));
  101. if ((*root) != NULL) {
  102. if ((*root)->data > x) {
  103. delete(&(*root)->left, x);
  104. }
  105. else if ((*root)->data < x) {
  106. delete(&(*root)->right, x);
  107. }
  108. else {
  109. if ((*root)->left && (*root)->right) {//左右子节点都存在
  110. temp = findmin((*root)->right);
  111. (*root)->data = temp->data;
  112. delete(&(*root)->right, temp->data);
  113. }
  114. else {//只有一个或没有子节点
  115. temp = *root;
  116. if ((*root)->left) {
  117. (*root) = (*root)->left;
  118. }
  119. else {
  120. (*root) = (*root)->right;
  121. }
  122. free(temp);
  123. }
  124. }
  125. }
  126. }

参考资料:《数据结构与算法分析:C语言描述》

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/844575
推荐阅读
相关标签
  

闽ICP备14008679号