pip install BinaryTreat
from BinaryTrees.Node import BinaryTree
tree = [12,2,123,2,12]
tree = BinaryTree(tree)
tree.draw() # also checkout other methods
- Amir Sabri: @assaabriiii
- Kimia Keivanloo: @kimiakeivan
pip install BinaryTreat
from BinaryTrees.Node import BinaryTree
tree = [12,2,123,2,12]
tree = BinaryTree(tree)
tree.draw() # also checkout other methods