Metadata-Version: 2.1
Name: easybt
Version: 0.0.3
Summary: Operations On Binary Tree
Home-page: UNKNOWN
Author: Samir Patil
Author-email: <samirspatil742099@gmail.com>
License: UNKNOWN
Keywords: python,data stucture,binary tree
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown


# EasyBT
#### Make Binary trees easy for everyone

* You can create a binary tree from a list and convert that binary tree into the list
```bash

               [1,2,3,4,5,6]         [1,2,None,4,5,6]

                     1                    1
                    / \                  / 
                   2   3                2  
                  /\   /               / \
                 4  5 6               4   5    
                                     /
                                    6                            
```
---



 [Back to the top](#)


# Installation

[![Python Version](https://img.shields.io/badge/python-3.8-brightgreen.svg)](https://python.org)


* Just Go Your Terminal Install It ( MAke sure that you have python already installed in your computer ):

```bash
pip install easybt 
```


## Requirements:
### python3 


# Documetation

```bash
from easybt.binarytree import BinaryTree  

bt=BinaryTree()
nums=[1,2,3,4,5,6]
root=bt.DesializeTree(nums)
```




#### Contributors

1. [Samir Patil](https://github.com/samirpatil2000)





[Back to the top](#)





