Metadata-Version: 2.1
Name: pyvltree
Version: 0.5.0
Summary: Simple AVL tree implementation.
Home-page: https://github.com/almgru/pyvl-tree
Author: Daniel Alm Grundström
Author-email: daniel.alm.grundstrom@protonmail.com
License: LICENSE.txt
Keywords: tree binary search bst self-balancing avl-tree avl
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Education
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/x-rst

===========
PYVLTree
===========

Simple implementation of an AVL Tree.

Usage::

    #!/usr/bin/env python

    from pyvltree import AVLTree

    tree = AVLTree()
    tree.insert(3)
    three = tree.search(3)
    n = tree.size()
    tree.delete(3)


