Skip to main content

A simple package to draw Binary Tree and balance the tree using AVL algorithm

Project description

Py-AVL-Tree

A python package to make a Tree's like a Binary Tree and Balanced AVL Tree.

How to install?

Use:

pip install Py-AVL-Tree

How to use?

First, import the AVL class.

from TreeAVL.AVL import AVL

Now, you have to parse a list with nodes to create a object tree.

from TreeAVL.AVL import AVL

tree = AVL([10, 5, 15, 7, 18, 9])

To show your binary tree, just parse your new object tree to print.

from TreeAVL.AVL import AVL

tree = AVL([10, 5, 15, 7, 18, 9])
print(tree)

If you have to balance your tree, just call the method BalanceTree()

from TreeAVL.AVL import AVL

tree = AVL([10, 5, 15, 7, 18, 9])
print(tree)
tree.BalanceTree()
print(tree)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Py-AVL-Tree-0.0.2.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

Py_AVL_Tree-0.0.2-py3-none-any.whl (5.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page