首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
编程语言
> 详细
AVL树C++实现
时间:
2015-05-14 12:01:56
阅读:
234
评论:
0
收藏:
0
[点我收藏+]
标签:
//AVL树
#include<iostream>
#include<functional>
using namespace std;
class avl_tree
{
private:
struct tree
{
int data;
tree* L;
tree* R;
int height;
tree(int data_) :data(data_), L(0), R(0), height(0){}
};
tree* root;
public:
avl_tree() :root(0){}
void Insert(int data)
{
function<void(tree*&, int)> ins = [&](tree*& r, int d)
{
if (r == NULL)
{
r = new tree(d);
}
else if (d < r->data)
{
ins(r->L, d);
if (Height(r->L) - Height(r->R) == 2)
{
if (d < r->L->data)
{
r = LL(r);
}
else
{
r = LR(r);
}
}
}
else if (d > r->data)
{
ins(r->R, d);
if (Height(r->R) - Height(r->L) == 2)
{
if (d > r->R->data)
{
r = RR(r);
}
else
{
r = RL(r);
}
}
}
r->height = Compare(Height(r->L), Height(r->R)) + 1;
};
ins(root, data);
}
void Delete(int data)
{
//不能使用二叉树原先左插右删除方法,那样的话高度差会混乱
function<void(tree*&, int)> del = [&](tree*& r, int d)
{
if (r == NULL)
{
return;
}
if (d < r->data)
{
del(r->L, d);
if (Height(r->R) - Height(r->L) == 2)
{
tree* temp = r->R; // 此时右边高了
if (Height(temp->L) > Height(temp->R)) // 需要双旋转
{
r = RL(r);
}
else //需要单旋转
{
r = RR(r);
}
}
}
else if (d > r->data)
{
del(r->R, d);
if (Height(r->L) - Height(r->R) == 2)
{
tree* temp = r->L;
if (Height(temp->L) >= Height(temp->R))
{
r = LL(r);
}
else
{
r = LR(r);
}
}
}
else
{
if (r->L && r->R) //要删除节点的左右节点都非空
{
if (Height(r->L) > Height(r->R)) //如果要删除节点的左子树比右子树高,则可以把左边最大的节点放在要删除节点上,可以保持树的平衡
{
tree* temp = r->L;
while (temp->R)
{
temp = temp->R;
}
r->data = temp->data;
del(r->L, temp->data);
}
else //如果要删除节点的右子树比左子树高或相等,则可以把右边最小的节点放在要删除节点上,可以保持书的平衡
{
tree* temp = r->R;
while (temp->L)
{
temp = temp->L;
}
r->data = temp->data;
del(r->R, temp->data);
}
}
else //如果左右节点不是全都非空,这个时候不用再分情况讨论了,直接删除该节点
{
tree* temp = r;
r = (r->L != NULL) ? r->L : r->R;
delete temp;
}
}
};
del(root, data);
}
void Destroy()
{
function<void(tree*)> des = [&](tree* r)
{
if (r == NULL)
{
return;
}
des(r->L);
des(r->R);
delete r;
};
des(root);
root = NULL;
}
int Find_max()
{
tree* temp = root;
while (temp->R)
{
temp = temp->R;
}
return temp->data;
}
int Find_min()
{
tree* temp = root;
while (temp->L)
{
temp = temp->L;
}
return temp->data;
}
void Travel_mid()
{
function<void(tree*)> tra = [&](tree* root)
{
if (root == NULL)
{
return;
}
tra(root->L);
/*int temp = root->height;
while (temp)
{
cout << ‘\t‘;
temp--;
}*/
cout << root->data << endl;
tra(root->R);
};
tra(root);
}
tree* LL(tree* t)
{
tree* temp = t->L;
t->L = temp->R;
temp->R = t;
t->height = Compare(Height(t->L), Height(t->R)) + 1;
temp->height = Compare(Height(t->L), Height(t->R)) + 1;
return temp;
}
tree* RR(tree* t)
{
tree* temp = t->R;
t->R = temp->L;
temp->L = t;
t->height = Compare(Height(t->L), Height(t->R)) + 1;
temp->height = Compare(Height(t->L), Height(t->R)) + 1;
return temp;
}
tree* LR(tree* t)
{
t->L = RR(t->L);
return LL(t);
}
tree* RL(tree* t)
{
t->R = LL(t->R);
return RR(t);
}
int Height(tree* t)
{
if (t == NULL)
{
return -1;
}
return t->height;
}
int Compare(int one, int two)
{
return one > two ? one : two;
}
void Travel_tree()
{
function<void(tree*, int)> tra = [&](tree* r, int j)
{
if (r == NULL)
{
return;
}
for (int i = 0; i < j; i++)
{
cout << " ";
}
cout << r->data << endl;
tra(r->L, j+1);
tra(r->R, j+1);
};
int judge = 0;
tra(root, judge);
}
};
int main()
{
avl_tree t;
for (int i = 0; i < 10; i++)
{
t.Insert(i);
}
t.Travel_tree();
t.Delete(5);
t.Travel_tree();
cin.get();
return 0;
}
AVL树C++实现
标签:
原文地址:http://blog.csdn.net/linukey/article/details/45718435
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
Spring Cloud 从入门到精通(一)Nacos 服务中心初探
2021-07-29
基础的排序算法
2021-07-29
SpringBoot|常用配置介绍
2021-07-29
关于 .NET 与 JAVA 在 JIT 编译上的一些差异
2021-07-29
C语言常用函数-toupper()将字符转换为大写英文字母函数
2021-07-29
《手把手教你》系列技巧篇(十)-java+ selenium自动化测试-元素定位大法之By class name(详细教程)
2021-07-28
4-1 YAML配置文件 注入 JavaBean中
2021-07-28
【python】 用来将对象持久化的 pickle 模块
2021-07-28
马拉车算法
2021-07-28
用Python进行冒泡排序
2021-07-28
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!