Skip to content

Commit d85088d

Browse files
committed
polish
1 parent 404158f commit d85088d

5 files changed

Lines changed: 75 additions & 1 deletion

File tree

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.*
2+
*.o
3+
*.exe
4+
5+
tree_link.py
6+
__pycache__/**
7+
!.gitignore

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# 算法笔记
22
记录学习算法的一些笔记, 想法, 以及代码实现 :smiley:
33

4-
目前正在看`<<算法导论>>``
4+
目前正在看`<<算法导论>>`
5+
6+
7+
> 目前 github 上的文档不支持 latex 数学公式渲染
8+
所以如果要读下面的一些笔记(md文件), 可以移步到[我的博客](https://mbinary.coding.me)
59

610
# 索引
711
* [.](.)

algorithm/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# 算法实现
2+
# 索引
3+
4+
* [.](.)
5+
* [8Astar.py](./8Astar.py)
6+
* [cantor.cc](./cantor.cc)
7+
* [EIGHT.py](./EIGHT.py)
8+
* [manacher.py](./manacher.py)
9+
* [markov.py](./markov.py)
10+
* [README.md](./README.md)
11+
* [sort](./sort)
12+
* [binaryTree.py](./sort/binaryTree.py)
13+
* [heapSort.py](./sort/heapSort.py)
14+
* [quickSort.py](./sort/quickSort.py)
15+
* [radixSort.py](./sort/radixSort.py)
16+
* [select.py](./sort/select.py)
17+
* [shellSort.py](./sort/shellSort.py)
18+
* [steganography_to_do.py](./steganography_to_do.py)
19+
* [sunday.py](./sunday.py)

dataStructure/README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# 数据结构的实现
2+
# 索引
3+
* [.](.)
4+
* [allOone](./allOone)
5+
* [allOone.py](./allOone/allOone.py)
6+
* [test.py](./allOone/test.py)
7+
* [binaryHeap.py](./binaryHeap.py)
8+
* [binaryIndexedTree.cc](./binaryIndexedTree.cc)
9+
* [binaryTree.py](./binaryTree.py)
10+
* [hashTable.py](./hashTable.py)
11+
* [huffman.cc](./huffman.cc)
12+
* [leftHeap.py](./leftHeap.py)
13+
* [loserTree.py](./loserTree.py)
14+
* [map](./map)
15+
* [map.cc](./map/map.cc)
16+
* [map.exe](./map/map.exe)
17+
* [README.md](./README.md)
18+
* [segTree.cc](./segTree.cc)
19+
* [splayTree.py](./splayTree.py)
20+
* [stack](./stack)
21+
* [stack.cc](./stack/stack.cc)
22+
* [stack.exe](./stack/stack.exe)
23+
* [stack.o](./stack/stack.o)
24+
* [trie.py](./trie.py)
25+
* [winnerTree.py](./winnerTree.py)

notes/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# 算法笔记
2+
>注意, 目前 github 上的文档不支持 latex 数学公式渲染
3+
所以如果想有较好的阅读体验, 可以移步到[我的博客](https://mbinary.coding.me)
4+
5+
# 索引
6+
* [.](.)
7+
* [alg-general.md](./alg-general.md)
8+
* [hashTable.md](./hashTable.md)
9+
* [README.md](./README.md)
10+
* [sort.md](./sort.md)
11+
* [src](./src)
12+
* [coin1.jpg](./src/coin1.jpg)
13+
* [coin2.jpg](./src/coin2.jpg)
14+
* [coin3.jpg](./src/coin3.jpg)
15+
* [coin4.jpg](./src/coin4.jpg)
16+
* [recursive-tree.jpg](./src/recursive-tree.jpg)
17+
* [symbol.jpg](./src/symbol.jpg)
18+
* [test.jpg](./src/test.jpg)
19+
* [tree.md](./tree.md)

0 commit comments

Comments
 (0)