Skip to content

Commit d185976

Browse files
committed
update docs
1 parent 36faf41 commit d185976

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ Package provides javascript implementation of algorithms for graph processing
55

66
# Features
77

8-
* Depth First Search
8+
* Depth First Search (Link: [HTML DEMO](https://rawgit.com/chen0040/js-graph-algorithms/master/examples/example-dfs.html))
99
* Breadth First Search
10-
* Connected Components for undirected graph
11-
* Topoloical Sort
12-
* Strongly Connected Components for directed graph
13-
* Minimum Spanning Tree for weighted graph (Kruskal, Prim Lazy, Prim Eager)
14-
* Shortest Paths (Dijkstra, Bellman-Ford, Topological Sort on DAG)
15-
* MaxFlow-MinCut (Ford-Fulkerson)
10+
* Connected Components for undirected graph (Link: [HTML DEMO](https://rawgit.com/chen0040/js-graph-algorithms/master/examples/example-connected-components.html))
11+
* Topoloical Sort (Link: [HTML DEMO](https://rawgit.com/chen0040/js-graph-algorithms/master/examples/example-topo-sort.html))
12+
* Strongly Connected Components for directed graph (Link: [HTML DEMO](https://rawgit.com/chen0040/js-graph-algorithms/master/examples/example-strongly-connected-components.html))
13+
* Minimum Spanning Tree for weighted graph (Kruskal, Prim Lazy, Prim Eager) (Link: [HTML DEMO](https://rawgit.com/chen0040/js-graph-algorithms/master/examples/example-kruskal.html))
14+
* Shortest Paths (Dijkstra, Bellman-Ford, Topological Sort on DAG) (Link: [HTML DEMO](https://rawgit.com/chen0040/js-graph-algorithms/master/examples/example-dijstra.html))
15+
* MaxFlow-MinCut (Ford-Fulkerson) (Link: [HTML DEMO](https://rawgit.com/chen0040/js-graph-algorithms/master/examples/example-ford-fulkerson.html))
1616

1717
# Install
1818

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-graph-algorithms",
3-
"version": "1.0.11",
3+
"version": "1.0.12",
44
"description": "Package implements data structures and algorithms for processing various types of graphs",
55
"author": "Xianshun Chen",
66
"contributors": [

0 commit comments

Comments
 (0)