Skip to content

Commit b69b564

Browse files
committed
Add license and bages, change urls
1 parent b6805c6 commit b69b564

84 files changed

Lines changed: 1519 additions & 1339 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

LICENSE

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
2+
3+
Copyright (C) 2019 Heqin Zhu <zhuheqin1@gmail.com>
4+
5+
Everyone is permitted to copy and distribute verbatim or modified
6+
copies of this license document, and changing it is allowed as long
7+
as the name is changed.
8+
9+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
10+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
11+
12+
0. You just DO WHAT THE FUCK YOU WANT TO.

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,25 @@
11

2-
# Algorithm
2+
# Algorithm and data structures
3+
4+
[![Stars](https://img.shields.io/github/stars/mbinary/algorithm-in-python.svg?label=Stars&style=social)](https://github.com/mbinary/algorithm-in-python/stargazers)
5+
[![Forks](https://img.shields.io/github/forks/mbinary/algorithm-in-python.svg?label=Fork&style=social)](https://github.com/mbinary/algorithm-in-python/network/members)
6+
[![repo-size](https://img.shields.io/github/repo-size/mbinary/algorithm-in-python.svg)]()
7+
[![License](https://img.shields.io/badge/LICENSE-WTFPL-blue.svg)](LICENSE)
8+
[![Language](https://img.shields.io/badge/language-python3-orange.svg)]()
9+
<!-- [![Build](https://travis-ci.org/mbinary/PL0-compiler.svg?branch=master)]() -->
10+
311
>Notes and codes for learning algorithm and data structures :smiley:
412
513
Some pictures and ideas are from `<<Introduction to Algotithm>>`
614

715
I use python 3.6+ and c/c++ to implement them.
816

917
# Notice
10-
Currently, Github can't render latex math formulas.Thus,if you want to view the markodwn notes which contain latex math formulas, you can visit [my blog](https://mbinary.coding.me)
18+
Currently, Github can't render latex math formulas.Thus,if you want to view the markodwn notes which contain latex math formulas, you can visit [my blog](https://mbinary.xyz)
1119

1220
# Index
1321
* [.](.)
22+
* [LICENSE](./LICENSE)
1423
* [README.md](./README.md)
1524
* [backtracking](./backtracking)
1625
* [dataStructure](./dataStructure)
@@ -74,6 +83,7 @@ Currently, Github can't render latex math formulas.Thus,if you want to view the
7483
* [binary_search.hs](./search/binary_search.hs)
7584
* [bloomFilter.py](./search/bloomFilter.py)
7685
* [schedule.py](./search/schedule.py)
86+
* [work_dispatch.py](./search/work_dispatch.py)
7787
* [sort](./sort)
7888
* [binaryTree.py](./sort/binaryTree.py)
7989
* [heapSort.py](./sort/heapSort.py)
@@ -88,6 +98,7 @@ Currently, Github can't render latex math formulas.Thus,if you want to view the
8898
* [manacher.py](./string/manacher.py)
8999
* [markov.py](./string/markov.py)
90100
* [rabin_karp.py](./string/rabin_karp.py)
101+
* [rotate.py](./string/rotate.py)
91102
* [src](./string/src)
92103
* [sunday.py](./string/sunday.py)
93104
* [wildcard_matching.py](./string/wildcard_matching.py)

dataStructure/allOone/allOone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# File : allOoneDS.py
44
# Author: mbinary
55
# Mail: zhuheqin1@gmail.com
6-
# Blog: https://mbinary.coding.me
6+
# Blog: https://mbinary.xyz
77
# Github: https://github.com/mbinary
88
# Created Time: 2018-05-19 23:07
99
# Description:

dataStructure/allOone/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# File : testAllOne.py
44
# Author: mbinary
55
# Mail: zhuheqin1@gmail.com
6-
# Blog: https://mbinary.coding.me
6+
# Blog: https://mbinary.xyz
77
# Github: https://github.com/mbinary
88
# Created Time: 2018-05-19 23:07
99
# Description:

dataStructure/bTree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# File : bTree.py
44
# Author: mbinary
55
# Mail: zhuheqin1@gmail.com
6-
# Blog: https://mbinary.coding.me
6+
# Blog: https://mbinary.xyz
77
# Github: https://github.com/mbinary
88
# Created Time: 2018-08-29 12:49
99
# Description:

dataStructure/binaryHeap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# File : binaryHeap.py
44
# Author: mbinary
55
# Mail: zhuheqin1@gmail.com
6-
# Blog: https://mbinary.coding.me
6+
# Blog: https://mbinary.xyz
77
# Github: https://github.com/mbinary
88
# Created Time: 2018-05-19 23:06
99
# Description:

dataStructure/binaryTree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# File : binaryTree.py
44
# Author: mbinary
55
# Mail: zhuheqin1@gmail.com
6-
# Blog: https://mbinary.coding.me
6+
# Blog: https://mbinary.xyz
77
# Github: https://github.com/mbinary
88
# Created Time: 2018-05-19 23:07
99
# Description:

dataStructure/graph/adjacentList.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# File : adjacentList.py
44
# Author: mbinary
55
# Mail: zhuheqin1@gmail.com
6-
# Blog: https://mbinary.coding.me
6+
# Blog: https://mbinary.xyz
77
# Github: https://github.com/mbinary
88
# Created Time: 2018-04-26 10:33
99
# Description:

dataStructure/graph/directed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# File : directed.py
44
# Author: mbinary
55
# Mail: zhuheqin1@gmail.com
6-
# Blog: https://mbinary.coding.me
6+
# Blog: https://mbinary.xyz
77
# Github: https://github.com/mbinary
88
# Created Time: 2018-04-26 10:33
99
# Description:

dataStructure/graph/graph.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# File : graph.cc
44
# Author: mbinary
55
# Mail: zhuheqin1@gmail.com
6-
# Blog: https://mbinary.coding.me
6+
# Blog: https://mbinary.xyz
77
# Github: https://github.com/mbinary
88
# Created Time: 2018-04-26 10:33
99
# Description:

0 commit comments

Comments
 (0)