A package that prints binary trees in terminal
Project description
print-btree
This packages allows you to print and visualize your binary tree
from print_btree import print_btree
class Node:
def __init__(self, val):
self.val = val
self.left = None
self.right = None
root = Node(1)
root.left = Node(2)
root.right = Node(3)
root.left.left = Node(4)
root.left.right = Node(5)
print_btree(root)
'''
__1__
| |
_2_ 3
| |
4 5
'''
Ideally, your Node definition should be something like:
class Node:
def __init__(self, val):
self.val = val
self.left = None
self.right = None
But it's ok if your Node has different attribute names:
from print_btree import print_btree
class BNode:
def __init__(self, value):
self.value = value
self.left_node = None
self.right_node = None
root = BNode(1)
root.left_node = BNode(2)
root.right_node = BNode(3)
root.left_node.left_node = BNode(4)
root.left_node.right_node = BNode(5)
root.right_node.right_node = BNode(100)
print_btree(root,
val='value',
left='left_node',
right='right_node')
'''
__1__
| |
_2_ 3__
| | |
4 5 100
'''
It's ok if you values are longer
from print_btree import print_btree
class Node:
def __init__(self, val):
self.val = val
self.left = None
self.right = None
root = Node('apple')
root.left = Node('pie')
root.right = Node('juice')
root.left.left = Node('pear')
root.left.right = Node('pineapplejuice')
root.right.right = Node('durian')
print_btree(root)
'''
________apple________
| |
_____pie_____ juice_
| | |
pear pineapplejuice durian
'''
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
print_btree-0.0.10.tar.gz
(4.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file print_btree-0.0.10.tar.gz.
File metadata
- Download URL: print_btree-0.0.10.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5ae2faefc529615f0a1d3e524657ee39b71f3e27198f8125a1a9384e061a2f4
|
|
| MD5 |
b07cd78c155cd3238b1c30e71a5eea81
|
|
| BLAKE2b-256 |
b9cdf1e66611bfd2f595d59aefba08996ffe32a8fa31ada01c04981b7ace878f
|
File details
Details for the file print_btree-0.0.10-py3-none-any.whl.
File metadata
- Download URL: print_btree-0.0.10-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b274fa1c08d9cbe1791bb6bfce3477cb9a32dd05c55dde075ace373624d6cc3e
|
|
| MD5 |
9e4bf6b1c0a245ede415dbd32b1f87c7
|
|
| BLAKE2b-256 |
be6181b666de3ed97c8ade9c0462455589c1b8ccb60578e1afd48324a8f0cf08
|