avl树



AVL树  左子树和右子树之间差的绝对值不超过一 ,同时他们的左右子树也一样
AVL树的左子上的值比根的值小,根的值比右子的值小
如图为一个 AVL树

AVL树的结构体定义如下

  1. typedef int KeyType;
  2. typedef struct AVLNode
  3. {
  4. AVLNode *leftchild;
  5. AVLNode *parent;
  6. AVLNode *rightchild;
  7. int balance;
  8. KeyType key;
  9. }AVLNode;
  10. typedef struct
  11. {
  12. AVLNode *head; // head not root;
  13. int cursize;
  14. }AVLTree;


树结构中有左子,右子,双亲节点 同时有平衡和关键值该树有头节点

头节点为这棵树根节点的双亲节点,同时根节点也为头节点的双亲节点现在为树添加关键值

关键值为右子高度减去左子高度


为该树添加一个值,导致这个树不平衡

为了让这颗树平衡,我们开始左旋这棵树

可以看到左旋就是让这棵树根节点下移,让原先不平衡节点的右子的左子为不平衡节点的右子,不平衡节点作为其右子的左子

代码如下      图中45为不平衡节点  78为新节点

  1. void RotateLeft(AVLNode *head,AVLNode *ptr)
  2. {
  3. AVLNode *newroot = ptr->rightchild;//新节点为不平衡节点的右子
  4. newroot->parent = ptr->parent; //新节点的双亲节点为不平衡节点的双亲
  5. ptr->rightchild = newroot->leftchild;//不平衡节点的右子为新节点的左子
  6. if(newroot->leftchild != NULL)
  7. {
  8. newroot->leftchild->parent = ptr; //新节点的左子的双亲节点为不平衡节点
  9. }
  10. newroot->leftchild = ptr;//新节点的左子为不平衡节点
  11. if(head->parent == ptr) // 如果头节点的双亲节点为不平衡节点
  12. {
  13. head->parent = newroot;//头节点的双亲节点
  14. }
  15. else
  16. {
  17. if(ptr->parent->rightchild == ptr)//如果不平衡节点的双亲节点的右子为不平衡节点
  18. {
  19. ptr->parent->rightchild = newroot;//不平衡节点的双亲节点的右子为新节点
  20. }
  21. else
  22. {
  23. ptr->parent->leftchild = newroot;
  24. }
  25. }
  26. ptr->parent = newroot;// 3
  27. }

右旋类似

  1. void RotateRight(AVLNode *head,AVLNode *ptr)
  2. {
  3. AVLNode * newroot = ptr->leftchild;
  4. newroot->parent = ptr->parent; //1
  5. ptr->leftchild = newroot->rightchild;
  6. if(newroot->rightchild != NULL)
  7. {
  8. newroot->rightchild->parent = ptr; //2
  9. }
  10. newroot->rightchild = ptr;
  11. if(head->parent == ptr) //root
  12. {
  13. head->parent = newroot;
  14. }
  15. else
  16. {
  17. if(ptr->parent->leftchild == ptr)
  18. {
  19. ptr->parent->leftchild = newroot;
  20. }
  21. else
  22. {
  23. ptr->parent->rightchild = newroot;
  24. }
  25. }
  26. ptr->parent = newroot;//3
  27. }

如果头节点的双亲节点为原不平衡节点,让新节点为头节点  原节点是左,则新节点是左,是右则右

二叉树平衡后该关键值操作代码如下

  1. void LeftBalance(AVLNode *head,AVLNode *ptr)
  2. {
  3. AVLNode *leftsub = ptr->leftchild, *rightsub = NULL;
  4. switch(leftsub->balance)
  5. {
  6. case 0: cout<<"Left already balance "<<endl; break;
  7. case -1:
  8. ptr->balance = 0;
  9. leftsub->balance = 0;
  10. RotateRight(head,ptr);
  11. break;
  12. case 1:
  13. rightsub = leftsub->rightchild;
  14. switch(rightsub->balance)
  15. {
  16. case 1:
  17. ptr->balance = 0;
  18. leftsub->balance = -1;
  19. break;
  20. case -1:
  21. ptr->balance = 1;
  22. leftsub->balance = 0;
  23. break;
  24. case 0:
  25. ptr->balance = 0;
  26. leftsub->balance = 0;
  27. break
  28. }
  29. rightsub->balance = 0;
  30. RotateLeft(head,leftsub);
  31. RotateRight(head,ptr);
  32. break;
  33. }
  34. }
  35. void RightBalance(AVLNode *head,AVLNode *ptr)
  36. {
  37. AVLNode *rightsub = ptr->rightchild, *leftsub = NULL;
  38. switch(rightsub->balance)
  39. {
  40. case 0: break;
  41. case 1:
  42. RotateLeft(head,ptr);
  43. break;
  44. case -1:
  45. leftsub = rightsub->leftchild;
  46. break;
  47. }
  48. }

其它代码

  1. AVLNode * Buynode()
  2. {
  3. AVLNode *s = (AVLNode*)malloc(sizeof(AVLNode));
  4. if(NULL == s) exit(1);
  5. memset(s,0,sizeof(AVLNode));
  6. return s;
  7. }
  8. void Freenode(AVLNode *p)
  9. {
  10. free(p);
  11. }
  12. void Init_Tree(AVLTree *ptree)
  13. {
  14. if(ptree == NULL) exit(1);
  15. AVLNode *s = Buynode();
  16. s->leftchild = NULL;
  17. s->rightchild = NULL;
  18. s->parent = NULL;
  19. s->balance = 0;
  20. ptree->head = s;
  21. ptree->cursize = 0;
  22. }

登录后您可以享受以下权益:

×
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值

举报

选择你想要举报的内容(必选)
  • 内容涉黄
  • 政治相关
  • 内容抄袭
  • 涉嫌广告
  • 内容侵权
  • 侮辱谩骂
  • 样式问题
  • 其他
点击体验
DeepSeekR1满血版
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回顶部