-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.js
125 lines (98 loc) · 2.43 KB
/
graph.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import Queue from './queue';
import Dictionary from './dictionary';
class Graph {
constructor() {
this.vertices = [];
this.adjList = new Dictionary();
}
addVertex(v) {
this.vertices.push(v);
this.adjList.set(v, []);
}
addEdge(v, w) {
this.adjList.get(v).push(w);
this.adjList.get(w).push(v);
}
bfs(v, callback) {
const visited = {};
const queue = new Queue();
queue.enqueue(v);
while (!queue.isEmpty()) {
const u = queue.dequeue(),
neighbors = this.adjList.get(u);
visited[u] = true;
for (let i = 0; i < neighbors.length; i++) {
const w = neighbors[i];
if (!visited[w]) {
visited[w] = true;
queue.enqueue(w);
}
}
if (callback) {
callback(u);
}
}
}
BFS(v) {
const visited = {},
queue = new Queue(),
d = [],
pred = [];
queue.enqueue(v);
for (let i = 0; i < this.vertices.length; i++) {
d[this.vertices[i]] = 0;
pred[this.vertices[i]] = null;
}
while (!queue.isEmpty()) {
const u = queue.dequeue(),
neighbors = this.adjList.get(u);
visited[u] = true;
for (let i = 0; i < neighbors.length; i++) {
const w = neighbors[i];
if (!visited[w]) {
visited[w] = true;
d[w] = d[u] + 1;
pred[w] = u;
queue.enqueue(w);
}
}
}
return {
distances: d,
predecessors: pred,
};
}
toString() {
let str = '';
for (let i = 0; i < this.vertices.length; i++) {
str += this.vertices[i] + ' -> ';
const neighbors = this.adjList.get(this.vertices[i]);
for (let j = 0; j < neighbors.length; j++) {
str += neighbors[j] + ' ';
}
str += '\n';
}
return str;
}
}
var graph = new Graph();
var myVertices = ['A','B','C','D','E','F','G','H','I']; //{7}
for (var i=0; i<myVertices.length; i++){ //{8}
graph.addVertex(myVertices[i]);
}
graph.addEdge('A', 'B'); //{9}
graph.addEdge('A', 'C');
graph.addEdge('A', 'D');
graph.addEdge('C', 'D');
graph.addEdge('C', 'G');
graph.addEdge('D', 'G');
graph.addEdge('D', 'H');
graph.addEdge('B', 'E');
graph.addEdge('B', 'F');
graph.addEdge('E', 'I');
console.log(graph.toString());
graph.bfs(myVertices[3], value => {
console.log('Visited vertex: ' + value);
});
const shortestPathA = graph.BFS(myVertices[0]);
console.log(shortestPathA);