平衡二叉树源码,可直接编译运行。实现插入、删除、清空、查找、遍历等操作。
2022-02-24 17:32:19 5KB AVLTree tree 平衡二叉树 二叉树
1
通过C基于AVLTree结构实现的动态平衡二叉搜索树,具有GUI界面,可用于增删改查,二叉树的图形绘制,二叉树的深度求取,二叉树的先序遍历、中序遍历和后序遍历等功能。
2021-12-25 23:43:50 18.55MB AVLTree Demo
1
An AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node differ by at most one; if at any time they differ by more than one, rebalancing is done to restore this property. Figures 1-4 illustrate the rotation rules.Now given a sequence of insertions, you are supposed to tell the root of the resulting AVL tree.
2021-11-10 18:59:06 5KB 陈越 数据结构 AVLTree 平衡二叉树
1
红黑树、平衡二叉树、B树、二叉搜索树和SPlay树的C++源码实现,带工程
2021-10-31 10:34:29 96KB 红黑树 平衡二叉树 B树 二叉搜索树
1
C++平衡树实现
2021-08-20 18:02:42 3KB C++ AvlTree
1
本设计实现了AVLTree的所有的实现功能,也包括BinSTree与AVLTree的转换
2019-12-21 21:17:24 24KB AVLTree树的实现
1