Update AVLtree.py

An auto balanced binary tree
with no delete node function
leave for latter
This commit is contained in:
Awfifcuihc 2018-11-20 03:41:52 +08:00
parent 16cc96a092
commit 6001215b60

View File

@ -1,4 +1,7 @@
# -*- coding: utf-8 -*-
'''
An auto-balanced binary tree!
'''
import math
class my_queue:
def __init__(self):