-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThuật toán BFS.html
48 lines (42 loc) · 1.64 KB
/
Thuật toán BFS.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hoang Kim Ngoc</title>
</head>
<body>
<script>
class Graph {
constructor(vertices) {
this.numVertices = vertices; //số đỉnh
this.adjLists = new Array(vertices).fill(null).map(() => []);
//mảng chứa danh sách kề
this.visited = new Array(vertices).fill(false); // biến thăm
}
addEdge(src, dest) {
//thêm đỉnh đích vào ds kề của đỉnh nguồn
this.adjLists[src].push(dest);
this.adjLists[dest].push(src);
}
BFS(startVertex) {
let queue = []; // tạo 1 hàng đợi rỗng
this.visited[startVertex] = true; //đã thăm
queue.push(startVertex); //thêm vào hàng đợi
while (queue.length > 0) {
let currVertex = queue.shift();//đẩy ra khỏi hàng đợi
console.log("Visited " + currVertex); //in ra là đã duyệt
// Duyệt qua các đỉnh kề của đỉnh hiện tại
this.adjLists[currVertex].forEach(adjVertex => {
if (!this.visited[adjVertex]) { //nếu chưa được duyệt
this.visited[adjVertex] = true; //đánh dấu đã thăm
queue.push(adjVertex); //thêm vào hàng đợi
}
});
}
}
}
</script>
</script>
</body>
</html>