数据结构:第7章:查找(复习)

目录

顺序查找:

折半查找:

二叉排序树:

4. (程序题)

平衡二叉树: 


顺序查找:

ASL=\frac{1}{n}\sum i=\frac{1+n}{2}

折半查找:

ASL=\frac{1}{n}\sum_{i=1}^{h}j*2^{j-1}=\frac{n+1}{n}log2(n+1)-1

这里 j 表示 二叉查找树的第 j 层

二叉排序树:

二叉排序树(Binary Search Tree,BST)是一种特殊的二叉树,定义:

  1. 对于二叉排序树的每个节点,其左子树的所有节点的值都小于该节点的值。
  2. 对于二叉排序树的每个节点,其右子树的所有节点的值都大于该节点的值。
  3. 对于二叉排序树的每个节点,其左右子树也分别是二叉排序树。

可以发现二叉排序树的定义时递归定义。

这些性质保证了对于二叉排序树中的任意节点,其左子树的节点值小于它,右子树的节点值大于它,从而形成了一种有序的结构。

二叉排序树的有序性质使得在其中进行查找、插入和删除等操作时具有较高的效率。对于给定的值,可以通过比较节点的值,按照二叉排序树的性质在树中快速定位所需的节点。

二叉排序树的难点在于删除树中的某个值。删除某个键值为 key 的节点时,有三中情况要考虑:

1.该节点 r 的左孩子为空:r=r->lch;

2.该节点 r 的右孩子为空:l=l->rch;

3.该节点的左右孩子均不位空:选择左孩子中 key 值最大的节点替换 r;

4. (程序题)

二叉排序树插入、删除

键盘输入若干整型数据,以0做结束,利用二叉排序树的插入算法创建二叉排序树,并中序遍历该二叉树。之后输入一个整数x,在二叉排序树中查找,若找到则输出“该数存在”,否则输出“该数不存在”;再输入一个要删除的一定存在的整数y,完成在该二叉树中删除y的操作,并输出删除y后的二叉树中序遍历的结果。

输出数据之间用一个空格分隔。

输入:
1 5 4 2 3 6 8 7 9 11 14 13 12 16 19 0
输出:
1 2 3 4 5 6 7 8 9 11 12 13 14 16 19
输入:
19
输出:
该数存在
输入:
14
输出:
1 2 3 4 5 6 7 8 9 11 12 13 16 19

#include<iostream>
#include<string>
#include<cstring>
#include<cmath>
#include<ctime>
#include<algorithm>
#include<utility>
#include<stack>
#include<queue>
#include<vector>
#include<set>
#include<math.h>
#include<map>
#include<sstream>
#include<deque>
#include<unordered_map>
using namespace std;
typedef long long LL;typedef struct Info {int key;
}Info;typedef struct Node {Info data;struct Node* lch;struct Node* rch;
}Node,*Tree;void print(Tree& r) {if (r == NULL)return;print(r->lch);cout << r->data.key << " ";print(r->rch);
}void Insert(Tree& r, int key) {if (r == NULL) {Node* p = new Node;p->data.key = key;p->rch = p->lch = NULL;r = p;}else if(r->data.key<key) {Insert(r->rch, key);}else {Insert(r->lch, key);}
}void build(Tree& r) {int in;cin >> in;while (in) {Insert(r, in);cin >> in;}
}int search(Tree& r, int key) {if (r == NULL)return 0;if (r->data.key == key) {return 1;}if (r->data.key < key) {if (search(r->rch, key))return 1;}else {if (search(r->lch, key))return 1;}return 0;
}int del(Tree& r, int key) {if (r == NULL)return 0;if (r->data.key == key) {if (r->lch == NULL) {r =r->rch;}else if (r->rch == NULL) {r =r->lch;}else {//cout << r->data.key << endl;Node* p = r->lch;Node* fa = r;while (p->rch != NULL) {fa = p;p = p->rch;}Node* t = r;if (fa != r)fa->rch = p->lch;if (r->lch != p)p->lch = r->lch;p->rch = r->rch;//cout << p->data.key << endl;r = p;delete t;}return 1;}if (r->data.key < key) {if (del(r->rch, key))return 1;}else {if (del(r->lch, key))return 1;}return 0;
}int main() {Node* root = NULL;build(root);print(root);int in;cin >> in;if (search(root, in)) {cout << "该数存在" << endl;}else {cout << "该数不存在" << endl;}cin >> in;del(root, in);print(root);return 0;
}

用例1:

输入

1 5 4 2 3 6 8 7 9 11 14 13 12 16 19 0 19 14

输出

1 2 3 4 5 6 7 8 9 11 12 13 14 16 19 该数存在 1 2 3 4 5 6 7 8 9 11 12 13 16 19

用例2:

输入

10 9 8 7 11 12 13 14 0 14 8

输出

7 8 9 10 11 12 13 14 该数存在 7 9 10 11 12 13 14

用例3:

输入

23 45 67 21 12 15 9 10 55 0 19 9

输出

9 10 12 15 21 23 45 55 67 该数不存在 10 12 15 21 23 45 55 67

平衡二叉树: 

平衡二叉树的定义


平衡二叉排序树查找算法的性能取决于二叉树的结构,而二叉树的形状则取决于其数据集。
如果数据呈有序排列,则二叉排序树是线性的,查找的时间复杂度为O(n);反之,如果二叉排序
树的结构合理,则查找速度较快,查找的时间复杂度为O(logn)。事实上,树的高度越小,查找
速度越快。因此,希望二叉树的高度尽可能小。本节将讨论一种特殊类型的二叉排序树,称为平
衡二叉树
(Balanced Binary Tree 或 Height-Balanced Tree),因由前苏联数学家 Adelson-Velskii 和
Landis 提出,所以又称AVL树。


平衡二叉树或者是空树,或者是具有如下特征的二叉排序树:
(1)左子树和右子树的深度之差的绝对值不超过1;
(2)左子树和右子树也是平衡二叉树。


若将二叉树上结点的平衡因子(Balance Factor,BF)定义为该结点左子树和右子树的深度之
差,则平衡二叉树上所有结点的平衡因子只可能是-1、0和1。只要二叉树上有一个结点的平衡
因子的绝对值大于1,则该二叉树就是不平衡的。图7.11(a)所示为两棵平衡二叉树,而图 7.11
(b)所示为两棵不平衡的二叉树,结点中的值为该结点的平衡因子。

平衡二叉树的调整(重难点)

LL型调整操作由于在A左子树根结点的左子树上插入结点,A的平衡因子由1增至2,致使以A为根的子树失去平衡,则需进行一次向右的顺时针旋转操作 

RR 型调整操作:当在 A 的右子树的右子树上插入结点时,A 的平衡因子由 -1 变为 -2,导致以 A 为根结点的子树失去平衡。此时,需要进行一次向左的逆时针旋转操作,将 A 的右子树作为其左子树的右子树,并将 A 作为其左子树的根结点。

LR型调整操作:由于在A的左子树根结点的右子树上插入结点, A的平衡因子由1增至2,致使以A为根结点的子树失去平衡,则需进行两次旋转操作。第一次对B及其右子树进行递时针旋转,C转上去成为B的根,这时变成了LL型,所以第二次进行LL型的顺时针旋转即可恢复平衡。如果C原来有左子树,则调整C的左子树为B的右子树,


RL型调整操作:由于在A的右子树根结点的左子树上插入结点,A的平衡因子由-1变为-2,致使以A 为根结点的子树失去平衡,则旋转方法和LR型相对称,也需进行两次旋转,先顺时针右旋,再逆时针左旋。

左,右旋转调整代码:

 void Turnleft(TreeNode*& r) {TreeNode* A = r;TreeNode* B = r->right;A->right = B->left;B->left = A;r = B;}void Turnright(TreeNode*& r) {TreeNode* A = r;TreeNode* B = r->left;A->left = B->right;B->right = A;r = B;}

 判断不平衡类型类型的代码:

 

void fun1(vector<int>& g, TreeNode* r) {if ( r == NULL||(r->left==NULL&&r->right==NULL))return;if (mp[r->left] == mp[r->right])return;g.push_back(mp[r->left] - mp[r->right]);fun1(g, r->left);fun1(g, r->right);}string check(TreeNode* root) {vector<int>g;fun1(g, root);if (g[0] == 2&&g[1]==1)return "LL";else if (g[0] == 2&&g[1]==-1)return "LR";else {if (g[0] == -2&&g[1]==1)return "RL";return "RR";}return "NO";}

将二叉树转换成平衡二叉树的代码:


class Solution {
public:unordered_map<TreeNode*, int>mp;void fun1(vector<int>& g, TreeNode* r) {if ( r == NULL||(r->left==NULL&&r->right==NULL))return;if (mp[r->left] == mp[r->right])return;g.push_back(mp[r->left] - mp[r->right]);fun1(g, r->left);fun1(g, r->right);}string check(TreeNode* root) {vector<int>g;fun1(g, root);if (g[0] == 2&&g[1]==1)return "LL";else if (g[0] == 2&&g[1]==-1)return "LR";else {if (g[0] == -2&&g[1]==1)return "RL";return "RR";}return "NO";}void Turnleft(TreeNode*& r) {TreeNode* A = r;TreeNode* B = r->right;A->right = B->left;B->left = A;r = B;}void Turnright(TreeNode*& r) {TreeNode* A = r;TreeNode* B = r->left;A->left = B->right;B->right = A;r = B;}void change(TreeNode*& r, string ret) {if (ret == "LL") {Turnright(r);mp[r] = mp[r->left] + 1;}else if (ret == "RR") {Turnleft(r);mp[r] = mp[r->left] + 1;}else if (ret == "RL") {Turnright(r->right);Turnleft(r);mp[r] = mp[r->left] + 1;}else {Turnleft(r->left);Turnright(r);mp[r] = mp[r->left] + 1;}}int dfs(TreeNode*& root) {if (root == NULL) {return 0;}int lh = dfs(root->left);int rh = dfs(root->right);int h = lh - rh;//cout << "__________________" << lh << " " << rh << " " << h << "______"<<root->val<<endl;if (h == 2 || h == -2) {//cout << root->val << endl;string ret = check(root);//cout << ret << endl;change(root, ret);}mp[root] = max(lh, rh) + 1;return max(lh,rh)+1;}TreeNode* balanceBST(TreeNode* root) {dfs(root);return root;}
};

 完整代码:

代码中有测试样例

#include<iostream>
#include<string>
#include<cstring>
#include<cmath>
#include<ctime>
#include<algorithm>
#include<utility>
#include<stack>
#include<queue>
#include<vector>
#include<set>
#include<math.h>
#include<map>
#include<sstream>
#include<deque>
#include<unordered_map>
using namespace std;// Definition for a binary tree node.
struct TreeNode {int val;TreeNode* left;TreeNode* right;TreeNode() : val(0), left(nullptr), right(nullptr) {}TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}TreeNode(int x, TreeNode* left, TreeNode* right) : val(x), left(left), right(right) {}
};// Function to insert a value into BST
TreeNode* insertIntoBST(TreeNode* root, int val) {if (!root) {return new TreeNode(val);}if (val < root->val) {root->left = insertIntoBST(root->left, val);}else {root->right = insertIntoBST(root->right, val);}return root;
}// Function to construct BST from preorder traversal
TreeNode* bstFromPreorder(vector<int>& preorder) {TreeNode* root = nullptr;for (int val : preorder) {if (val == 0)continue;root = insertIntoBST(root, val);}return root;
}// Function to perform inorder traversal (for verification)
void inorderTraversal(TreeNode* root) {if (root) {inorderTraversal(root->left);cout << root->val << " ";inorderTraversal(root->right);}
}// Function to perform level order traversal
void levelOrderTraversal(TreeNode* root) {if (!root) {return;}queue<TreeNode*> q;q.push(root);while (!q.empty()) {TreeNode* current = q.front();q.pop();cout << current->val << " ";if (current->left) {q.push(current->left);}if (current->right) {q.push(current->right);}}
}class Solution {
public:unordered_map<TreeNode*, int>mp;void fun1(vector<int>& g, TreeNode* r) {if ( r == NULL||(r->left==NULL&&r->right==NULL))return;if (mp[r->left] == mp[r->right])return;g.push_back(mp[r->left] - mp[r->right]);fun1(g, r->left);fun1(g, r->right);}string check(TreeNode* root) {vector<int>g;fun1(g, root);if (g[0] == 2&&g[1]==1)return "LL";else if (g[0] == 2&&g[1]==-1)return "LR";else {if (g[0] == -2&&g[1]==1)return "RL";return "RR";}return "NO";}void Turnleft(TreeNode*& r) {TreeNode* A = r;TreeNode* B = r->right;A->right = B->left;B->left = A;r = B;}void Turnright(TreeNode*& r) {TreeNode* A = r;TreeNode* B = r->left;A->left = B->right;B->right = A;r = B;}void change(TreeNode*& r, string ret) {if (ret == "LL") {Turnright(r);mp[r] = mp[r->left] + 1;}else if (ret == "RR") {Turnleft(r);mp[r] = mp[r->left] + 1;}else if (ret == "RL") {Turnright(r->right);Turnleft(r);mp[r] = mp[r->left] + 1;}else {Turnleft(r->left);Turnright(r);mp[r] = mp[r->left] + 1;}}int dfs(TreeNode*& root) {if (root == NULL) {return 0;}int lh = dfs(root->left);int rh = dfs(root->right);int h = lh - rh;//cout << "__________________" << lh << " " << rh << " " << h << "______"<<root->val<<endl;if (h == 2 || h == -2) {//cout << root->val << endl;string ret = check(root);//cout << ret << endl;change(root, ret);}mp[root] = max(lh, rh) + 1;return max(lh,rh)+1;}TreeNode* balanceBST(TreeNode* root) {dfs(root);return root;}
};int main() {vector<int> preorder={ 31,25,47,16,28,0,0,0,0,0,30,0,0 };/*31,25,47,0,0,40,69,0,43,0,0 ,0,0            RL1,0,2,0,3,0,4,0,0                         RR31,25,47,0,0,40,69,36,0,0,0 ,0,0            RL31,25,47,16,28,0,0,0,0,26,0,0,0             LR31,25,47,16,28,0,0,0,0,0,30,0,0             LR*/TreeNode* root = bstFromPreorder(preorder);// Verification by performing inorder traversalinorderTraversal(root);cout << endl;levelOrderTraversal(root);cout << endl;Solution solve;root=solve.balanceBST(root);levelOrderTraversal(root);cout << endl;return 0;
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/312728.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

FDM3D打印系列——RX-78-2高达胸像打印

https://v.youku.com/v_show/id_XNjI4OTQ2NjkyNA.html   大家好&#xff0c;我是阿赵。   2024年的第一篇博客&#xff0c;做一个3D打印作品&#xff0c;RX-78-2高达胸像打印。 成年男人是很少收得到礼物的&#xff0c;所以礼物都要自己准备。这个模型&#xff0c;就算是我…

【时钟】分布式时钟HLC|Logical Time|Vector Clock|True Time

目录 简略 详细 附录 1 分布式系统不能使用NTP的原因 简略 分布式系统中不同于单机系统不能使用NTP(网络时间协议&#xff08;Network Time Protocol&#xff09;)来获取时间&#xff0c;所以我们需要一个特别的方式来获取分布式系统中的时间&#xff0c;mvcc也是使用time保证读…

数据结构 day6 栈+队列+二分查找+插入排序

插入排序 #include <stdio.h> #include<string.h> #include<stdlib.h> int main(int argc, const char *argv[]) {int a[]{41,50,66,38,32,49,18};int nsizeof(a)/sizeof(a[0]);int i,j,t;for(i1;i<n;i){int ta[i];for(ji-1;j>0;j--){if(t<a[j]){a…

论文阅读: AAAI 2022行人重识别方向论文-PFD_Net

本篇博客用于记录一篇行人重识别方向的论文所提出的优化方法《Pose-Guided Feature Disentangling for Occluded Person Re-identification Based on Transformer》&#xff0c;论文中提出的PDF_Net模型的backbone是采用《TransReID: Transformer-based Object Re-Identificati…

app自动化测试(Android)–触屏操作自动化

导入TouchAction Python 版本 from appium.webdriver.common.touch_action import TouchActionJava 版本 import io.appium.java_client.TouchAction;常用的手势操作 press 按下 TouchAction 提供的常用的手势操作有如下操作&#xff1a; press 按下 release 释放 move…

【vue】ffmpeg实现web在线转码播放:

文章目录 一、效果&#xff1a;二、文档&#xff1a;三、实现&#xff1a;【1】安装ffmpeg【2】引入并初始化【3】案例&#xff1a; 一、效果&#xff1a; 二、文档&#xff1a; ffmpeg HTML: HyperText Markup Language | MDN 纯前端使用ffmpeg实现视频压缩_js实现前端视频压…

项目经验简单总结

引擎 unity 2020 语言 C# lua python(用于工具链) java (用于SDK对接) js&#xff08;PC WEB SDK对接&#xff09; 编辑器 VS VSCODE IDEA eclipse 项目开发模块规划分 主项目工程&#xff0c;UI资源项目工程&#xff0c;模型场景资源项目工程 主项目工程&#xff1a;所有的…

STM32F407-14.3.10-表73具有有断路功能的互补通道OCx和OCxN的输出控制位-00x10

如上表所示&#xff0c;MOE0&#xff0c;OSSI0&#xff0c;CCxE1&#xff0c;CCxNE0时&#xff0c;OCx与OCxN的输出状态取决于GPIO端口上下拉状态。 ---------------------------------------------------------------------------------------------------------------------…

Baumer工业相机堡盟工业相机如何通过NEOAPI SDK获取相机当前数据吞吐量(C++)

Baumer工业相机堡盟工业相机如何通过NEOAPI SDK里函数来获取相机当前数据吞吐量&#xff08;C&#xff09; Baumer工业相机Baumer工业相机的数据吞吐量的技术背景CameraExplorer如何查看相机吞吐量信息在NEOAPI SDK里通过函数获取相机接口吞吐量 Baumer工业相机通过NEOAPI SDK获…

分布式【雪花算法】

雪花算法 背景&#xff1a;在分布式系统中&#xff0c;需要使用全局唯一ID&#xff0c;期待ID能够按照时间有序生成。 **原理&#xff1a;**雪花算法是 64 位 的二进制&#xff0c;一共包含了四部分&#xff1a; 1位是符号位&#xff0c;也就是最高位&#xff0c;始终是0&am…

Android Studio实现课表

本文章主要展示课表的实现&#xff0c;里面包含很多控件的用法&#xff0c;比如吐司Toast、通知Notification、ListView&#xff0c;数值选择器NumberPicker&#xff0c;SeekBar同editText的关联。抽屉导航栏 还有一些其他的功能&#xff0c;比如InputFilter自定义的字符过滤器…

苹果Mac电脑甘特图管 EasyGantt最新 for mac

EasyGantt提供直观的界面&#xff0c;让用户能够轻松创建具有时间轴视图的甘特图。你可以添加并排列任务、设置任务的开始和结束日期、调整任务之间的依赖关系等。 任务管理&#xff1a;软件允许你添加、编辑和删除任务&#xff0c;设定任务的优先级和状态&#xff0c;并为每个…