Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 543 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 543 Bytes

Simple program to run binary tree options + graphical design

Menu :

alt text

Graphic :

alt text

You can intall this as a python package:
pip install BinaryTreat
Usage:
from BinaryTrees.Node import BinaryTree

tree = [12,2,123,2,12]
tree = BinaryTree(tree)
tree.draw() # also checkout other methods 

Authors