平衡二叉树 -java实现

 https://blog.csdn.net/weixin_45902285/article/details/124517412

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
package tree;
/**
 * @author: tianhaichao
 * @date: 2022/9/22 15:38
 * @description:平衡二叉树AVL
 * 1、每个节点的左右子树的高度差不大于1 ---> |left.height-right.height|<=1
 * 2、每个节点的左右子树也是平衡二叉树
 */
public class AVLTree {
    static TreeNode root;
    public static void main(String[] args) {
        int[] array = new int[]{10, 3, 5, 2, 5, 6, 4, 12, 15, 16, 17, 18};
        for (int i : array) {
            AVLTree.insert(root, i);
            preTraversal(root);
            System.out.println("----" + i);
        }
        System.out.println("==========================");
        //排序输出
        midTraversal(root);
    }
 
    public static class TreeNode {
        // 该节点为顶点的子树深度
        int height;
        int data;
        TreeNode leftChild;
        TreeNode rightChild;
        TreeNode parent;
 
        public TreeNode(int data) {
            this.data = data;
        }
    }
 
    /**
     * @author: tianhaichao
     * @date: 2022/9/23 09:55
     * @description:实现算法使用到了递归
     * 用来实现每次变化后,校验、调整树使其达到平衡
     */
    public static void insert(TreeNode node, int data) {
        if (root == null) {
            root = new TreeNode(data);
            root.height = 1;
            return;
        }
        if (data >= node.data) {
            if (node.rightChild == null) {
                //新增叶子结点,没有子树,所以树深为1
                TreeNode newNode = new TreeNode(data);
                newNode.height = 1;
                newNode.parent = node;
                node.rightChild = newNode;
            } else {
                // 递归执行每一层
                insert(node.rightChild, data);
            }
        } else {
            if (node.leftChild == null) {
                TreeNode newNode = new TreeNode(data);
                newNode.height = 1;
                newNode.parent = node;
                node.leftChild = newNode;
            } else {
                insert(node.leftChild, data);
            }
        }
        /**
         递归  --插入返回后,每一层都执行下面代码校验当前节点是否满足平衡标准,并调整
         */
        // 更新子树深度
        node.height = calculateSonTreeDeep(node);
        // 计算平衡因子,执行调整 左子树大
        if (calculateBF(node) >= 2) {
            // 判断是否为LR
            if (calculateBF(node.leftChild) == 1) {
                // LR 先执行左旋转成LL
                leftRotate(node.leftChild);
            }
            // LL 执行右旋
            rightRotate(node);
        }
        // 计算平衡因子,执行调整 右子树大
        if (calculateBF(node) <= -2) {
            // 判断类型,执行调整
            if (calculateBF(node.rightChild) == 1) {
                // LR 先执行左旋转成LL
                rightRotate(node.rightChild);
            }
            // LL 执行右旋
            leftRotate(node);
        }
    }
 
    /**
     * @author: tianhaichao
     * @date: 2022/8/30 14:44
     * @description: node 旋转节点 RR 、LR执行左旋
     * 1、将右节点上提成为父节点
     * 2、父节点转为右节点的左孩子
     * 3、父节点的右孩子【替换成】右节点的左孩子,父节点的左孩子不变
     * return 旋转完后的父节点,也就是右孩子【将右节点上提成为父节点】
     */
    public static TreeNode leftRotate(TreeNode node) {
        TreeNode right = node.rightChild;
        TreeNode father = node;
        // 如果右节点存在左孩子,父节点的右孩子【替换成】右节点的左孩子
        father.rightChild = right.leftChild;
        // 将右节点上提成为父节点 变成祖父的孩子
        if (father.parent == null || father == root) {
            root = right;
        } else if (father.parent.leftChild == father) {
            father.parent.leftChild = right;
        } else {
            // 如果旋转节点是父节点的右节点
            father.parent.rightChild = right;
        }
        right.parent = father.parent;
//        父节点转为右节点的左孩子
        right.leftChild = father;
        father.parent = right;
        // 调整节点子树高度
        father.height = calculateSonTreeDeep(father);
        right.height = calculateSonTreeDeep(right);
        if (father.parent != null) {
            father.parent.height = calculateSonTreeDeep(father.parent);
        }
        return right;
    }
 
    /**
     * @return 旋转之后的父节点,也就是左孩子【将左节点上提成为父节点】
     * @author: tianhaichao
     * @date: 2022/9/20 18:31
     * @description: LL或RL执行右旋
     * 执行右旋,
     * 1、将左节点上提成为父节点
     * 2、父节点转为左节点的右孩子
     * 3、父节点的左孩子【替换成】左节点的右孩子,父节点的右孩子不变
     */
    public static TreeNode rightRotate(TreeNode node) {
        TreeNode left = node.leftChild;
        TreeNode father = node;
        // 父节点的左孩子【替换成】左节点的右孩子,父节点的右孩子不变
        father.leftChild = left.rightChild;
        //将左节点上提成为父节点
        if (father.parent == null || father == root) {
            root = left;
        } else if (father.parent.rightChild == father) {
 
            father.parent.rightChild = left;
        } else {
            father.parent.leftChild = left;
        }
        left.parent = father.parent;
        // 父节点转为左节点的右孩子
        father.parent = left;
        left.rightChild = father;
        // 调整节点子树高度
        father.height = calculateSonTreeDeep(father);
        left.height = calculateSonTreeDeep(left);
        if (father.parent != null) {
            father.parent.height = calculateSonTreeDeep(father.parent);
        }
        return left;
    }
 
    /**
     * @author: tianhaichao
     * @date: 2022/9/22 16:34
     * @description: 计算平衡因子
     */
    public static int calculateBF(TreeNode node) {
        if (node == null) {
            return 0;
        } else if (node.rightChild == null && node.leftChild == null) {
            return 0;
        } else if (node.leftChild == null) {
            return -node.rightChild.height;
        } else if (node.rightChild == null) {
            return node.leftChild.height;
        } else {
            return node.leftChild.height - node.rightChild.height;
        }
    }
 
    /**
     * @author: tianhaichao
     * @date: 2022/9/22 16:34
     * @description: 计算子树深度,TreeNode的height值
     */
    public static int calculateSonTreeDeep(TreeNode node) {
        if (node == null) {
            return 0;
        } else if (node.rightChild == null && node.leftChild == null) {
            return 1;
        } else if (node.leftChild == null) {
            return node.rightChild.height + 1;
        } else if (node.rightChild == null) {
            return node.leftChild.height + 1;
        } else {
            return Math.max(node.leftChild.height, node.rightChild.height) + 1;
        }
    }
 
    /**
     * @author: tianhaichao
     * @date: 2022/9/20 15:10
     * @description:中序遍历
     */
    public static void midTraversal(TreeNode node) {
        if (node == null) {
            return;
        }
        midTraversal(node.leftChild);
        System.out.print(node.data + "  ");
        midTraversal(node.rightChild);
    }
 
    /**
     * @author: tianhaichao
     * @date: 2022/9/20 15:10
     * @description:中序遍历
     */
    public static void preTraversal(TreeNode node) {
        if (node == null) {
            return;
        }
        int left = node.leftChild != null ? node.leftChild.data : 0;
        int right = node.rightChild != null ? node.rightChild.data : 0;
        System.out.print(node.data + "【" + node.height + "  " + left + "  " + right + "】" + "  ");
        preTraversal(node.leftChild);
        preTraversal(node.rightChild);
    }
 
}

  

 

posted @   田海超  阅读(82)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
点击右上角即可分享
微信分享提示