algorithm-in-python/README.md

112 lines
5.2 KiB
Markdown
Raw Normal View History

2018-12-11 15:57:58 +08:00
# Algorithm
>Notes and codes for learning algorithm and data structures :smiley:
2018-07-11 19:26:24 +08:00
2018-10-02 21:24:06 +08:00
Some pictures and ideas are from `<<Introduction to Algotithm>>
2018-07-11 19:41:35 +08:00
I use python 3.6+ and c++ to implements them.
Since I used f-Strings in python, you may use python 3.6+ to run the following python scripts.
2018-07-11 19:41:35 +08:00
>>I am still learning new things and this repo is always updating.
2018-07-11 19:26:24 +08:00
# Notice
Currently, Github can't render latex math formulas.
2018-07-15 11:20:52 +08:00
So,if you wannt to view the notes which contain latex math formulas and are in markdown format, you can visit [my blog](https://mbinary.coding.me)
2018-07-15 11:20:52 +08:00
# Index
2018-07-11 19:26:24 +08:00
* [.](.)
2018-12-11 15:57:58 +08:00
* [README.md](./README.md)
* [backtracking](./backtracking)
2018-07-11 19:44:09 +08:00
* [dataStructure](./dataStructure)
* [allOone](./dataStructure/allOone)
2018-12-11 15:57:58 +08:00
* [bTree.py](./dataStructure/bTree.py)
2018-07-11 19:44:09 +08:00
* [binaryHeap.py](./dataStructure/binaryHeap.py)
* [binaryTree.py](./dataStructure/binaryTree.py)
2018-07-15 11:20:52 +08:00
* [graph](./dataStructure/graph)
2018-10-02 21:24:06 +08:00
* [hashTable.py](./dataStructure/hashTable.py)
2018-07-15 11:20:52 +08:00
* [huffman](./dataStructure/huffman)
2018-11-07 16:59:20 +08:00
* [intervalTree.py](./dataStructure/intervalTree.py)
2018-07-11 19:44:09 +08:00
* [leftHeap.py](./dataStructure/leftHeap.py)
* [loserTree.py](./dataStructure/loserTree.py)
2018-07-15 11:20:52 +08:00
* [map.cc](./dataStructure/map.cc)
* [polynomial.cpp](./dataStructure/polynomial.cpp)
* [polynomial.py](./dataStructure/polynomial.py)
2018-10-02 21:24:06 +08:00
* [redBlackTree.py](./dataStructure/redBlackTree.py)
2018-12-11 15:57:58 +08:00
* [redBlackTree0.py](./dataStructure/redBlackTree0.py)
2018-10-02 21:24:06 +08:00
* [splayTree.py](./dataStructure/splayTree.py)
* [trie](./dataStructure/trie)
2018-07-11 19:44:09 +08:00
* [winnerTree.py](./dataStructure/winnerTree.py)
2018-11-07 16:59:20 +08:00
* [divideAndConquer](./divideAndConquer)
* [min_distance_of_n_points.py](./divideAndConquer/min_distance_of_n_points.py)
2018-10-02 21:24:06 +08:00
* [docs](./docs)
2018-12-11 15:57:58 +08:00
* [README.md](./docs/README.md)
2018-10-02 21:24:06 +08:00
* [algorithm-general.md](./docs/algorithm-general.md)
* [b-tree.md](./docs/b-tree.md)
* [fib-heap.md](./docs/fib-heap.md)
* [graph.md](./docs/graph.md)
* [hashTable.md](./docs/hashTable.md)
* [red-black-tree.md](./docs/red-black-tree.md)
* [sort.md](./docs/sort.md)
2018-12-11 15:57:58 +08:00
* [src](./docs/src)
* [string-matching.md](./docs/string-matching.md)
2018-10-02 21:24:06 +08:00
* [tree.md](./docs/tree.md)
* [dynamicProgramming](./dynamicProgramming)
2018-12-11 15:57:58 +08:00
* [Vec2d.hs](./dynamicProgramming/Vec2d.hs)
2018-10-02 21:24:06 +08:00
* [lcs.py](./dynamicProgramming/lcs.py)
2018-11-07 16:59:20 +08:00
* [matrixChainMultiply.py](./dynamicProgramming/matrixChainMultiply.py)
2018-10-02 21:24:06 +08:00
* [splitStripe.hs](./dynamicProgramming/splitStripe.hs)
* [splitStripe.py](./dynamicProgramming/splitStripe.py)
* [stoneGame.py](./dynamicProgramming/stoneGame.py)
2018-10-02 21:24:06 +08:00
* [testVec2d.hs](./dynamicProgramming/testVec2d.hs)
* [wildcard_matching.py](./dynamicProgramming/wildcard_matching.py)
2018-10-02 21:24:06 +08:00
* [math](./math)
* [README.md](./math/README.md)
* [euler.py](./math/euler.py)
* [factor.py](./math/factor.py)
* [gcd.py](./math/gcd.py)
2018-10-02 21:24:06 +08:00
* [isPrime.py](./math/isPrime.py)
* [modulo_equation.py](./math/modulo_equation.py)
2018-10-02 21:24:06 +08:00
* [num_weight.py](./math/num_weight.py)
2018-12-11 15:57:58 +08:00
* [permute_back_track.py](./math/permute_back_track.py)
* [permute_cantor.c](./math/permute_cantor.c)
* [permute_divide_and_conquer.py](./math/permute_divide_and_conquer.py)
* [permute_next_arrangement.c](./math/permute_next_arrangement.c)
* [primesLEn.hs](./math/primesLEn.hs)
* [numericalAnalysis](./numericalAnalysis)
* [README.md](./numericalAnalysis/README.md)
* [interplotion.py](./numericalAnalysis/interplotion.py)
* [iteration.py](./numericalAnalysis/iteration.py)
* [least_square.py](./numericalAnalysis/least_square.py)
* [linear_equation.py](./numericalAnalysis/linear_equation.py)
* [numerical_differential.py](./numericalAnalysis/numerical_differential.py)
* [numerical_integration.py](./numericalAnalysis/numerical_integration.py)
* [solve-linear-by-iteration.py](./numericalAnalysis/solve-linear-by-iteration.py)
* [vector_norm.py](./numericalAnalysis/vector_norm.py)
2018-10-02 21:24:06 +08:00
* [search](./search)
* [8Astar.py](./search/8Astar.py)
2018-12-11 15:57:58 +08:00
* [BFS_knight.hs](./search/BFS_knight.hs)
* [binary_search.hs](./search/binary_search.hs)
2018-11-07 16:59:20 +08:00
* [bloomFilter.py](./search/bloomFilter.py)
2018-12-11 15:57:58 +08:00
* [schedule.py](./search/schedule.py)
2018-11-07 16:59:20 +08:00
* [sort](./sort)
* [binaryTree.py](./sort/binaryTree.py)
* [heapSort.py](./sort/heapSort.py)
* [quickSort.py](./sort/quickSort.py)
* [radixSort.py](./sort/radixSort.py)
* [select.py](./sort/select.py)
* [shellSort.py](./sort/shellSort.py)
* [string](./string)
2018-12-11 15:57:58 +08:00
* [KMP.py](./string/KMP.py)
* [README.md](./string/README.md)
2018-11-07 16:59:20 +08:00
* [manacher.py](./string/manacher.py)
* [markov.py](./string/markov.py)
2018-12-11 15:57:58 +08:00
* [rabin_karp.py](./string/rabin_karp.py)
* [src](./string/src)
* [sunday.py](./string/sunday.py)
* [wildcard_matching.py](./string/wildcard_matching.py)
2018-12-11 15:57:58 +08:00
* [utils](./utils)
* [config.py](./utils/config.py)
* [genReadme.py](./utils/genReadme.py)
* [headinfo.py](./utils/headinfo.py)
* [tree.py](./utils/tree.py)