toontran / CS204-Project3

Final Project!
MIT License
1 stars 0 forks source link

Create Base AVL Tree skeleton #2

Open toontran opened 4 years ago

toontran commented 4 years ago

Create class AVLTree with following methods:

__init__: Does not take in any input] Initializes a bridges instance

insert: Take in key and value as the input Automatically balance the tree upon insertion Create an AVL tree element, put in balance factor, balance tree

visualize: Does not take in any input Just call bridges.visualize()

toontran commented 4 years ago

Working on the testing of the tree