Tree Data Structures¶ AVL Tree AVL AVL.height AVL.in_order() AVL.insert() AVL.post_order() AVL.pre_order() AVL.remove() Implementation Details AVL._adjust() AVL._get_balance() AVL._get_height() AVL._rotation_left() AVL._rotation_right() AVL._get_min() AVL._insert_recursion() AVL._remove_recursion() Huffman Tree MinHeap MinHeap.heapify() MinHeap.heappop() MinHeap.heappush() Huffman Huffman.encode() Huffman.wpl Disjoint Set Union UnionFind UnionFind.__str__() UnionFind.find() UnionFind.union()