Skip to content

Commit 2525702

Browse files
committed
bellman-ford
1 parent 8f5dfb3 commit 2525702

File tree

4 files changed

+150
-9
lines changed

4 files changed

+150
-9
lines changed

README.md

+42-8
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ for(var i=0; i < mst.length; ++i) {
357357
}
358358
```
359359

360-
### find the shortest paths using Dijkstra on weighted directed graph
360+
### Find the shortest paths using Dijkstra
361361

362362
The sample code below show how to obtain the shortest paths from a starting point 0 on a weighted directed graph using Dijkstra:
363363

@@ -381,13 +381,6 @@ g.addEdge(new jsgraphs.Edge(5, 6, 13.0));
381381
g.addEdge(new jsgraphs.Edge(7, 5, 6.0));
382382
g.addEdge(new jsgraphs.Edge(7, 2, 7.0));
383383

384-
expect(g.V).to.equal(8);
385-
var edgeCount = 0;
386-
for(var v = 0; v < g.V; ++v){
387-
var adj_v = g.adj(v);
388-
edgeCount += adj_v.length;
389-
}
390-
expect(edgeCount).to.equal(16);
391384

392385
var dijkstra = new jsgraphs.Dijkstra(g, 0);
393386

@@ -403,4 +396,45 @@ for(var v = 1; v < g.V; ++v){
403396
console.log('=====distance: ' + dijkstra.distanceTo(v) + '=========');
404397
}
405398
}
399+
```
400+
401+
### Find the shortest paths using Bellman-Ford
402+
403+
The sample code below show how to obtain the shortest paths from a starting point 0 on a weighted directed graph using Bellman-Ford:
404+
405+
```javascript
406+
var jsgraphs = require('js-graph-algorithms');
407+
var g = new jsgraphs.WeightedDiGraph(8);
408+
g.addEdge(new jsgraphs.Edge(0, 1, 5.0));
409+
g.addEdge(new jsgraphs.Edge(0, 4, 9.0));
410+
g.addEdge(new jsgraphs.Edge(0, 7, 8.0));
411+
g.addEdge(new jsgraphs.Edge(1, 2, 12.0));
412+
g.addEdge(new jsgraphs.Edge(1, 3, 15.0));
413+
g.addEdge(new jsgraphs.Edge(1, 7, 4.0));
414+
g.addEdge(new jsgraphs.Edge(2, 3, 3.0));
415+
g.addEdge(new jsgraphs.Edge(2, 6, 11.0));
416+
g.addEdge(new jsgraphs.Edge(3, 6, 9.0));
417+
g.addEdge(new jsgraphs.Edge(4, 5, 5.0));
418+
g.addEdge(new jsgraphs.Edge(4, 6, 20.0));
419+
g.addEdge(new jsgraphs.Edge(4, 7, 5.0));
420+
g.addEdge(new jsgraphs.Edge(5, 2, 1.0));
421+
g.addEdge(new jsgraphs.Edge(5, 6, 13.0));
422+
g.addEdge(new jsgraphs.Edge(7, 5, 6.0));
423+
g.addEdge(new jsgraphs.Edge(7, 2, 7.0));
424+
425+
426+
var bf = new jsgraphs.BellmanFord(g, 0);
427+
428+
for(var v = 1; v < g.V; ++v){
429+
if(bf.hasPathTo(v)){
430+
var path = bf.pathTo(v);
431+
console.log('=====path from 0 to ' + v + ' start==========');
432+
for(var i = 0; i < path.length; ++i) {
433+
var e = path[i];
434+
console.log(e.from() + ' => ' + e.to() + ': ' + e.weight);
435+
}
436+
console.log('=====path from 0 to ' + v + ' end==========');
437+
console.log('=====distance: ' + bf.distanceTo(v) + '=========');
438+
}
439+
}
406440
```

package.json

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

src/jsgraphs.js

+60
Original file line numberDiff line numberDiff line change
@@ -844,6 +844,66 @@ var jsgraphs = jsgraphs || {};
844844

845845

846846
jss.Dijkstra = Dijkstra;
847+
848+
var BellmanFord = function(G, s) {
849+
var V = G.V;
850+
this.s = s;
851+
this.marked = [];
852+
this.edgeTo = [];
853+
this.cost = [];
854+
855+
856+
for(var v =0; v < V; ++v){
857+
this.marked.push(false);
858+
this.edgeTo.push(null);
859+
this.cost.push(Number.MAX_VALUE);
860+
}
861+
862+
this.cost[s] = 0;
863+
this.marked[s] = true;
864+
865+
for(var j = 0; j < V; ++j) {
866+
for(var v = 0; v < V; ++v){
867+
var adj_v = G.adj(v);
868+
for(var i = 0; i < adj_v.length; ++i) {
869+
var e = adj_v[i];
870+
this.relax(e);
871+
}
872+
}
873+
}
874+
875+
};
876+
877+
BellmanFord.prototype.relax = function(e) {
878+
879+
var v = e.from();
880+
var w = e.to();
881+
882+
if(this.cost[w] > this.cost[v] + e.weight) {
883+
this.cost[w] = this.cost[v] + e.weight;
884+
this.marked[w] = true;
885+
this.edgeTo[w] = e;
886+
}
887+
};
888+
889+
BellmanFord.prototype.hasPathTo = function(v) {
890+
return this.marked[v];
891+
};
892+
893+
894+
BellmanFord.prototype.pathTo = function(v) {
895+
var path = new jss.Stack();
896+
for(var x = v; x != this.s; x = this.edgeTo[x].from()) {
897+
path.push(this.edgeTo[x]);
898+
}
899+
return path.toArray();
900+
};
901+
902+
BellmanFord.prototype.distanceTo = function(v) {
903+
return this.cost[v];
904+
};
905+
906+
jss.BellmanFord = BellmanFord;
847907

848908
})(jsgraphs);
849909

test/bellman-ford-spec.js

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
var expect = require('chai').expect;
2+
var jsgraphs = require('../src/jsgraphs');
3+
4+
describe('Bellman Ford', function(){
5+
it('should get shortest path from Weigthed Directed Graph', function(){
6+
var g = new jsgraphs.WeightedDiGraph(8);
7+
g.addEdge(new jsgraphs.Edge(0, 1, 5.0));
8+
g.addEdge(new jsgraphs.Edge(0, 4, 9.0));
9+
g.addEdge(new jsgraphs.Edge(0, 7, 8.0));
10+
g.addEdge(new jsgraphs.Edge(1, 2, 12.0));
11+
g.addEdge(new jsgraphs.Edge(1, 3, 15.0));
12+
g.addEdge(new jsgraphs.Edge(1, 7, 4.0));
13+
g.addEdge(new jsgraphs.Edge(2, 3, 3.0));
14+
g.addEdge(new jsgraphs.Edge(2, 6, 11.0));
15+
g.addEdge(new jsgraphs.Edge(3, 6, 9.0));
16+
g.addEdge(new jsgraphs.Edge(4, 5, 5.0));
17+
g.addEdge(new jsgraphs.Edge(4, 6, 20.0));
18+
g.addEdge(new jsgraphs.Edge(4, 7, 5.0));
19+
g.addEdge(new jsgraphs.Edge(5, 2, 1.0));
20+
g.addEdge(new jsgraphs.Edge(5, 6, 13.0));
21+
g.addEdge(new jsgraphs.Edge(7, 5, 6.0));
22+
g.addEdge(new jsgraphs.Edge(7, 2, 7.0));
23+
24+
expect(g.V).to.equal(8);
25+
var edgeCount = 0;
26+
for(var v = 0; v < g.V; ++v){
27+
var adj_v = g.adj(v);
28+
edgeCount += adj_v.length;
29+
}
30+
expect(edgeCount).to.equal(16);
31+
32+
var bf = new jsgraphs.BellmanFord(g, 0);
33+
34+
for(var v = 1; v < g.V; ++v){
35+
if(bf.hasPathTo(v)){
36+
var path = bf.pathTo(v);
37+
console.log('=====path from 0 to ' + v + ' start==========');
38+
for(var i = 0; i < path.length; ++i) {
39+
var e = path[i];
40+
console.log(e.from() + ' => ' + e.to() + ': ' + e.weight);
41+
}
42+
console.log('=====path from 0 to ' + v + ' end==========');
43+
console.log('=====distance: ' + bf.distanceTo(v) + '=========');
44+
}
45+
}
46+
});
47+
});

0 commit comments

Comments
 (0)