Skip to content

Commit b47f592

Browse files
committed
clean up and modernise
1 parent 4ce8175 commit b47f592

File tree

78 files changed

+2142
-57886
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+2142
-57886
lines changed

Gruntfile.js

Lines changed: 0 additions & 31 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,6 @@ Package provides javascript implementation of algorithms for graph processing
33

44
[![Build Status](https://travis-ci.org/chen0040/js-graph-algorithms.svg?branch=master)](https://travis-ci.org/chen0040/js-graph-algorithms) [![Coverage Status](https://coveralls.io/repos/github/chen0040/js-graph-algorithms/badge.svg?branch=master)](https://coveralls.io/github/chen0040/js-graph-algorithms?branch=master)
55

6-
# Features
7-
8-
* Depth First Search (Link: [HTML DEMO](https://rawgit.com/chen0040/js-graph-algorithms/master/examples/example-dfs.html))
9-
* Breadth First Search
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-dijkstra.html))
15-
* MaxFlow-MinCut (Ford-Fulkerson) (Link: [HTML DEMO](https://rawgit.com/chen0040/js-graph-algorithms/master/examples/example-ford-fulkerson.html))
16-
176
# Install
187

198
```bash
@@ -536,4 +525,4 @@ for(var i = 0; i < minCut.length; ++i) {
536525
var e = minCut[i];
537526
console.log('min-cut: (' + e.from() + ", " + e.to() + ')');
538527
}
539-
```
528+
```

browser.mjs

Lines changed: 0 additions & 9 deletions
This file was deleted.

examples/example-connected-components.html

Lines changed: 0 additions & 78 deletions
This file was deleted.

examples/example-dfs.html

Lines changed: 0 additions & 79 deletions
This file was deleted.

examples/example-digraph.html

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)