-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path09.graph.js
96 lines (88 loc) · 2.28 KB
/
09.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
/**
* Created by lei.sun on 2017/8/13.
*/
// 图
function Graph(v) {
this.vertices = v;
this.edges = 0;
this.adj = [];
for (var i = 0; i < this.vertices; ++i) {
this.adj[i] = [];
this.adj[i].push("");
}
this.addEdge = addEdge;
this.showGraph = showGraph;
this.dfs = dfs;
this.bfs = bfs;
this.marked = [];
for (var i = 0; i < this.vertices; ++i) {
this.marked[i] = false;
}
}
function addEdge(v,w) {
this.adj[v].push(w);
this.adj[w].push(v);
this.edges++;
}
function showGraph() {
for (var i = 0; i < this.vertices; ++i) {
console.log(i + " -> ");
for (var j = 0; j < this.vertices; ++j) {
if (this.adj[i][j] != undefined)
console.log(this.adj[i][j] + ' ');
}
console.log();
}
}
// 深度优先搜索
function dfs(v) {
this.marked[v] = true;
if (this.adj[v] != undefined) {
console.log("Visited vertex: " + v);
}
for (var w in this.adj[v]) {
if (!this.marked[w]) {
this.dfs(w);
}
}
}
// 广度优先搜索
function bfs(v) {
var queue = [];
this.marked[s] = true;
queue.push(s); // 添加到队尾
while (queue.length > 0) {
var v = queue.shift(); // 从队首移除
if (this.adj[v] != undefined) {
console.log("visited vertex: " + v);
}
for (var w in this.adj[v]) {
if (!this.marked[w]) {
this.marked[w] = true;
queue.push(w);
}
}
}
}
// 测试
g = new Graph(5);
g.addEdge(0,1);
g.addEdge(0,2);
g.addEdge(1,3);
g.addEdge(2,4);
g.showGraph();
// test dfs
g.dfs(0);
// test bfs
g.bfs(0);
// 概念
// 图是一组由边连接的节点(或顶点)。
// 图最常见的实现是邻接矩阵。
// 有两种算法可以对图进行遍历: 广度优先搜索(Breadth-First Search, BFS)和深度优先搜索(Depth-First Search, DFS)。
// 图遍历可以用来寻找特定的顶点或寻找两个顶点之间的路径,检查图是否连通,检查图是否含有环等。
// 更多用例
// 最短路径算法
// 介绍两种非常著名的算法,即Dijkstra算法和Floyd-Warshall算法。
// 最小生成树
// 最小生成树(MST)问题是网络设计中常见的问题。
// 两种主要的求最小生成树的算法: Prim算法和Kruskal算法。