Last updated:
0 purchases
biNNytree 0.1.1
This package allows to print Binary Tree beautifully.To use you need to follow this steps:1. from BinaryTree.tree import *2. Set root: root = Node(1)3. Use this: while True: value = int(input('Enter a number to add to the binary tree (0 to stop): ').lower()) if value == 0: break insert_node(root, value)OR: insert_node(root, 2), insert_node(root, 4), insert_node(root, value))
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.