Skip to content

Commit 1f5ce72

Browse files
committed
📝 docs: update README
1 parent 1f7f8c7 commit 1f5ce72

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

Diff for: README.md

+2
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ Package | Description
6161
[@algorithm.ts/findset][] | Find set.
6262
[@algorithm.ts/isap][] | ISAP algorithm. #MaxFlow, #NetworkFlow.
6363
[@algorithm.ts/knuth-shuffle][] | Knuth-Shuffle algorithm.
64+
[@algorithm.ts/mcmf][] | MCMF algorithm. #MinCostMaxFlow, #NetworkFlow.
6465
[@algorithm.ts/priority-queue][] | Priority Queue (heap).
6566
[@algorithm.ts/sudoku][] | A collection of utilities to generate / solve Sudoku problems.
6667

@@ -78,5 +79,6 @@ algorithm.ts is [MIT licensed](https://github.com/guanghechen/algorithm.ts/blob/
7879
[@algorithm.ts/findset]: ./packages/findset
7980
[@algorithm.ts/isap]: ./packages/isap
8081
[@algorithm.ts/knuth-shuffle]: ./packages/knuth-shuffle
82+
[@algorithm.ts/mcmf]: ./packages/mcmf
8183
[@algorithm.ts/priority-queue]: ./packages/priority-queue
8284
[@algorithm.ts/sudoku]: ./packages/sudoku

Diff for: packages/dinic/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ The **Dinic** algorithm is an algorithm for solving network flow problems.
112112
## Related
113113

114114
* [@algorithm.ts/isap](https://github.com/guanghechen/algorithm.ts/tree/main/packages/isap)
115+
* [@algorithm.ts/mcmf](https://github.com/guanghechen/algorithm.ts/tree/main/packages/mcmf)
115116
* [网络流 24 题](https://me.guanghechen.com/post/algorithm/graph/network-flow/24-problems/)
116117
* [网络流基础之最大权闭合图](https://me.guanghechen.com/post/algorithm/graph/network-flow/%E6%9C%80%E5%A4%A7%E6%9D%83%E9%97%AD%E5%90%88%E5%9B%BE/)
117118

Diff for: packages/isap/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ The **ISAP** algorithm is an algorithm for solving network flow problems.
112112
## Related
113113

114114
* [@algorithm.ts/dinic](https://github.com/guanghechen/algorithm.ts/tree/main/packages/dinic)
115+
* [@algorithm.ts/mcmf](https://github.com/guanghechen/algorithm.ts/tree/main/packages/mcmf)
115116
* [网络流 24 题](https://me.guanghechen.com/post/algorithm/graph/network-flow/24-problems/)
116117
* [网络流基础之最大权闭合图](https://me.guanghechen.com/post/algorithm/graph/network-flow/%E6%9C%80%E5%A4%A7%E6%9D%83%E9%97%AD%E5%90%88%E5%9B%BE/)
117118

0 commit comments

Comments
 (0)