Skip to content

Commit 270e077

Browse files
committed
update
1 parent 2881d7c commit 270e077

3 files changed

Lines changed: 12 additions & 6 deletions

File tree

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
[![repo-size](https://img.shields.io/github/repo-size/mbinary/algorithm.svg)]()
77
[![License](https://img.shields.io/badge/LICENSE-WTFPL-blue.svg)](LICENSE)
88
[![Language](https://img.shields.io/badge/language-python3-orange.svg)]()
9+
[![codebeat badge](https://codebeat.co/badges/4ef725b5-405a-4390-a860-a86deefab3f8)](https://codebeat.co/projects/github-com-mbinary-algorithm-master)
910
<!-- [![Build](https://travis-ci.org/mbinary/PL0-compiler.svg?branch=master)]() -->
1011

1112
>Notes and codes for learning algorithm and data structures :smiley:
@@ -14,12 +15,12 @@ Some pictures and ideas are from `<<Introduction to Algotithm>>`
1415

1516
I use python 3.6+ and c/c++ to implement them.
1617

17-
18-
[Click here](https://mbinary.xyz/alogrithm) to view notes
18+
[Click here](https://mbinary.xyz/algorithm/) to view notes
1919
# Index
2020
* [.](.)
2121
* [LICENSE](./LICENSE)
2222
* [README.md](./README.md)
23+
* [_config.yml](./_config.yml)
2324
* [backtracking](./backtracking)
2425
* [dataStructure](./dataStructure)
2526
* [allOone](./dataStructure/allOone)
@@ -48,6 +49,7 @@ I use python 3.6+ and c/c++ to implement them.
4849
* [min_distance_of_n_points.py](./divideAndConquer/min_distance_of_n_points.py)
4950
* [docs](./docs)
5051
* [README.md](./docs/README.md)
52+
* [_config.yml](./docs/_config.yml)
5153
* [algorithm-general.md](./docs/algorithm-general.md)
5254
* [b-tree.md](./docs/b-tree.md)
5355
* [fib-heap.md](./docs/fib-heap.md)
@@ -68,14 +70,20 @@ I use python 3.6+ and c/c++ to implement them.
6870
* [testVec2d.hs](./dynamicProgramming/testVec2d.hs)
6971
* [wildcard_matching.py](./dynamicProgramming/wildcard_matching.py)
7072
* [graph](./graph)
73+
* [cloneGraph.cpp](./graph/cloneGraph.cpp)
7174
* [isBipartGraph.py](./graph/isBipartGraph.py)
7275
* [math](./math)
7376
* [README.md](./math/README.md)
7477
* [convertWeight.py](./math/convertWeight.py)
7578
* [fastPow.py](./math/fastPow.py)
79+
* [fibonacci](./math/fibonacci)
7680
* [numberTheory](./math/numberTheory)
7781
* [numericalAnalysis](./math/numericalAnalysis)
7882
* [permute](./math/permute)
83+
* [parser](./parser)
84+
* [PL0-compiler](./parser/PL0-compiler)
85+
* [calculator](./parser/calculator)
86+
* [declarationParser](./parser/declarationParser)
7987
* [search](./search)
8088
* [8Astar.py](./search/8Astar.py)
8189
* [BFS_knight.hs](./search/BFS_knight.hs)
@@ -102,6 +110,7 @@ I use python 3.6+ and c/c++ to implement them.
102110
* [sunday.py](./string/sunday.py)
103111
* [wildcard_matching.py](./string/wildcard_matching.py)
104112
* [utils](./utils)
113+
* [codecogs.py](./utils/codecogs.py)
105114
* [config.py](./utils/config.py)
106115
* [genReadme.py](./utils/genReadme.py)
107116
* [headinfo.py](./utils/headinfo.py)

docs/b-tree.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ description:
2727
<!-- /TOC -->
2828
<a id="markdown-1-背景" name="1-背景"></a>
2929

30-
{% note info %}从此心里有了B数(●'◡'●){% endnote %}
3130

3231
# 1. 背景
3332
当有大量数据储存在磁盘时,如数据库的查找,插入, 删除等操作的实现, 如果要读取或者写入, 磁盘的寻道, 旋转时间很长, 远大于在 内存中的读取,写入时间.

utils/config.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515
1616
I use python 3.6+ and c/c++ to implement them.
1717
18-
# Notice
19-
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)
20-
18+
[Click here](https://mbinary.xyz/algorithm/) to view notes
2119
# Index
2220
{index}
2321
'''

0 commit comments

Comments
 (0)