pip install displaytree
from displaytree import binarytree
- The above python syntax prints the binary tree in the shape/structure of the created tree, hence helping us to visualize our created tree.
- root_node - Pass the root node(also an object of the node class) of the created tree.
- right - Pass the pointer attribute that points to the right node as a string.
- left - Pass the pointer attribute that points to the left node as a string.
- value - Pass the value attribute of the node which you want to be printed in each node of the tree as a string.
- No need to for any modification in the original python code.
- You can use your own NODE class for creating and operating your binary tree.
- Thus, helping us to add as many attributes in the NODE class according our requirements.
- When a NODE is not present/NULL, it will be presented as ❓ in the tree representation.
- Equally spaced representation of the tree.
- Clean and elegant look for clear visualization
- Created with 🧡
- Compatible with all major operating systems.