Skip to content

Commit

Permalink
docs: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
originalix committed Mar 16, 2021
1 parent 75e953d commit 5599a49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@
* [无向图(邻接表表示)](src/algs4/graph/graph.ts)
* [DFS 深度优先搜索](src/algs4/graph/dfs.ts)
* [BFS 广度优先搜索](src/algs4/graph/bfs.ts)
* [联通分量](src/algs4/graph/connect-components.ts)
* [连通分量](src/algs4/graph/connect-components.ts)
2 changes: 1 addition & 1 deletion src/algs4/graph/connect-components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Bag from '../1-3/bag'
import Graph, { createGraphFromReadIn } from './graph'

/**
* 联通分量
* 连通分量
*/
export default class CC {
private marked: boolean[]
Expand Down

0 comments on commit 5599a49

Please sign in to comment.