package tree.bst.avl;
public class AVLTreeDemo {
public static void main(String[] args) {
int[] arr = {4,3,6,5,7,8};
AvlTree avlTree = new AvlTree();
for (int i = 0; i < arr.length; i++) {
avlTree.addNode(new Node(arr[i]));
}
// 中序遍历显示
avlTree.infixOrder();
// 求高度
System.out.println(avlTree.getRoot().height());
System.out.println(avlTree.getRoot().leftHeight());
System.out.println(avlTree.getRoot().rightHeight());
}
}
class AvlTree {
public Node getRoot() {
return root;
}
public void setRoot(Node root) {
this.root = root;
}
private Node root;
public int height()
{
if (root == null){
return 0;
} else {
return root.height();
}
}
public void addNode(Node node) {
if (root == null) {
root = node;
} else {
root.add(node);
}
}
public void infixOrder() {
if (root == null) {
return;
}
root.infixOrder();
}
public Node search(int value) {
if (root == null) {
return null;
} else {
return root.search(value);
}
}
public Node searchParent(int value) {
if (root == null) {
return null;
} else {
return root.searchParent(value);
}
}
/**
* 删除最小节点
*
* @param node 传入的节点 当做一颗二叉排序书的根节点
* @return 以node为根节点的的最小节点的值
*/
public int delRightTreeMin(Node node) {
Node temp = node;
// 循环查找左子节点找到最小值
while (temp.left != null) {
temp = temp.left;
}
// delete the mini node
deleteNode(temp.value);
return temp.value;
}
public void deleteNode(int value) {
if (root == null) {
return;
}
// find thi node
Node targetNode = this.search(value);
// 如果没有找到要删除的节点
if (targetNode == null) {
return;
}
// 没有父节点
if (root.left == null && root.right == null) {
root = null;
return;
}
Node parent = searchParent(value);
//叶子节点
if (targetNode.left == null && targetNode.right == null) {
if (parent.left != null && parent.left.value == value) {
parent.left = null;
} else if (parent.right != null && parent.right.value == value) {
parent.right = null;
}
} else if (targetNode.left != null && targetNode.right != null) { //两颗子树
int min = this.delRightTreeMin(targetNode.right);
targetNode.value = min;
} else { // 一颗子树
// if has left node
if (targetNode.left != null) {
if (parent != null) {
// 如果targetNode是parent的左右
if (parent.left.value == value) {
parent.left = targetNode.left;
} else {
parent.right = targetNode.left;
}
} else {
root = targetNode.left;
}
} else {
if (parent != null) {
if (parent.right.value == value) {
parent.right = targetNode.right;
} else {
parent.left = targetNode.right;
}
} else {
root = targetNode.right;
}
}
}
}
}
class Node {
public int value;
public Node left;
public Node right;
public Node(int value) {
this.value = value;
}
public int leftHeight() {
if (left == null) {
return 0;
} else {
return left.height();
}
}
public int rightHeight() {
if (right == null) {
return 0;
} else {
return right.height();
}
}
public int height() {
return Math.max(this.left == null ? 0 : this.left.height(), this.right == null ? 0 : this.right.height()) + 1;
}
// find node
public Node search(int value) {
if (value == this.value) {
return this;
} else if (value < this.value) {
// left tree find
if (this.left == null) {
return null;
}
return this.left.search(value);
} else {
if (this.right == null) {
return null;
}
return this.right.search(value);
}
}
// 查找要删除的节点的父节点
public Node searchParent(int value) {
if (this.left != null && this.left.value == value
|| (this.right != null && this.right.value == value)) {
return this;
} else {
if (value < this.value && this.left != null) {
return this.left.searchParent(value);
} else if (value >= this.value && this.right != null) {
return this.right.searchParent(value);
} else {
return null;
}
}
}
// 添加节点
public void add(Node node) {
if (node == null) {
return;
}
// 添加 left
if (node.value < this.value) {
if (this.left == null) {
this.left = node;
} else {
this.left.add(node);
}
}
// 添加到right
if (node.value > this.value) {
if (this.right == null) {
this.right = node;
} else {
this.right.add(node);
}
}
}
// 中序便利
public void infixOrder() {
if (this.left != null) {
this.left.infixOrder();
}
System.out.println(this);
if (this.right != null) {
this.right.infixOrder();
}
}
@Override
public String toString() {
return "Node{" +
"value=" + value +
'}';
}
}
数据结构 avl树 高度
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
图解AVL树
引言AVL树是带有平衡条件的二叉查找树,它保证树的深度须是O(logN)O(logN)O(logN)。特性:它每个节点的左子树和右子树的高度最多
平衡二叉树 平衡二叉树Java实现 图解平衡二叉树 AVL树Java实现 图解AVL树的旋转操作 -
envoy nginx区别
1.docker Docker 是一个开源的应用容器引擎,让开发者可以打包他们的应用以及依赖包到一个可移植的镜像中,然后发布到任何流行的 Linux或Windows操作系统的机器上,也可以实现虚拟化。容器是完全使用沙箱机制,相互之间不会有任何接口。2.nginx :/’endʒɪnek
envoy nginx区别 nginx linux spring cloud java