Metadata-Version: 2.1
Name: BAAlgorithmUtils
Version: 3.2.1
Summary: Algorithm utils for python
Home-page: https://github.com/BenArvin/BAAlgorithmUtils
Author: BenArvin
Author-email: niedongsen@yeah.net
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# BAAlgorithmUtils

[![PyPI version](https://badge.fury.io/py/BAAlgorithmUtils.svg)](https://badge.fury.io/py/BAAlgorithmUtils)
[![Build Status](https://travis-ci.org/BenArvin/BAAlgorithmUtils.svg?branch=master)](https://travis-ci.org/BenArvin/BAAlgorithmUtils)

Algorithm utils for python

| Algorithm | Code file | Example |
| :--- | :--- | :--- |
| Tire tree | `TireTreeUtil.py` | `TireTreeUtilTest.py` |
| Aho-Corasick | `AhoCorasickUtil.py` | `AhoCorasickUtilTest.py` |
| KMP | `KMPUtil.py` | `KMPUtilTest.py` |
| Boyer-Moore | `BMUtil.py` | `BMUtilTest.py` |
| Horspool | `HorspoolUtil.py` | `HorspoolUtilTest.py` |
| SBOM | `SBOMUtil.py` | `SBOMUtilTest.py` |
| Binary Search Tree | `BSTUtil.py` | `BSTUtilTest.py` |
| Adelson-Velsky and Landis Tree | `AVLTreeUtil.py` | `AVLTreeUtilTest.py` |
| Bubble sort | `SortUtil.py` - `bubbleSort` | `SortUtilTest.py` |
| Selection sort | `SortUtil.py` - `selectionSort` | `SortUtilTest.py` |
| Quick sort | `SortUtil.py` - `quickSort` | `SortUtilTest.py` |

Other utils:

- `ClassUtil.py`

