File tree 2 files changed +12
-3
lines changed
2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 4
4
### Description
5
5
The purpose of this library is to help you with common algorithms like:
6
6
7
- String matching:
7
+ String matching
8
8
- Naive
9
9
- Rabin-Karp
10
10
- Knuth-Morris-Pratt
11
11
- Boyer-Moore-Horspool
12
12
13
+ Binary tree
14
+ - node and tree class
15
+ - lookup
16
+ - insert
17
+ - delete
18
+ - compare 2 trees
19
+ - print tree
20
+ - tree inorder iterator
21
+
13
22
### Installation
14
23
Get the source and run
15
24
Original file line number Diff line number Diff line change 1
1
from distutils .core import setup
2
2
setup (
3
3
name = "pyalgorithms" ,
4
- py_modules = ['string_matching' ],
4
+ py_modules = ['string_matching' , 'binary_tree' ],
5
5
version = "0.1" ,
6
6
description = "Python Algorithms" ,
7
7
author = "Laurent Luce" ,
8
8
author_email = "laurentluce49@yahoo.com" ,
9
9
url = "http://github.com/laurentluce/pyalgorithms" ,
10
10
download_url = "http://github.com/laurentluce/pyalgorithms" ,
11
- keywords = ["pyalgorithms " ,"algorithms" ],
11
+ keywords = ["python-algorithms " ,"algorithms" ],
12
12
classifiers = [
13
13
"Programming Language :: Python" ,
14
14
"Operating System :: OS Independent" ,
You can’t perform that action at this time.
0 commit comments