-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiUseFunctions.jsx
122 lines (87 loc) · 3.03 KB
/
multiUseFunctions.jsx
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
export function sortNodesByDistance(unvisitedNodes) {
unvisitedNodes.sort((nodeA, nodeB) => nodeA.distance - nodeB.distance);
}
export function runBfs(grid, unvisited, visited, char) {
const current = unvisited.dequeue();
visited.push(current);
let neighborNodes = [];
if(char === 'S') neighborNodes = getUnvisitedNeighbors(current, grid, 'S');
else neighborNodes = getUnvisitedNeighbors(current, grid, 'E');
for (const neighbor of neighborNodes) {
if(char === 'S') neighbor.previousNode = current;
else neighbor.nextNode = current;
}
neighborNodes.forEach( node => {
if(char === 'S') node.isVisitedS = true;
else node.isVisitedE = true;
unvisited.enqueue(node);
});
return { unvisited: unvisited, visited: visited};
}
export function getUnvisitedNeighbors(node, grid, char) {
const neighbors = [];
const { col, row } = node;
if (row > 0) {
if(!grid[row - 1][col].isWall) neighbors.push(grid[row - 1][col]);
}
if (row < grid.length - 1) {
if(!grid[row + 1][col].isWall) neighbors.push(grid[row + 1][col]);
}
if (col > 0) {
if(!grid[row][col - 1].isWall) neighbors.push(grid[row][col - 1]);
}
if (col < grid[0].length - 1) {
if(!grid[row][col + 1].isWall) neighbors.push(grid[row][col + 1]);
}
if(char === 'S') return neighbors.filter((neighbor) => !neighbor.isVisitedS);
return neighbors.filter((neighbor) => !neighbor.isVisitedE);
}
export function getAllNodes(grid) {
const nodes = [];
for (const row of grid) {
for (const node of row) {
nodes.push(node);
}
}
return nodes;
}
export function getAllNeighbors(node, grid) {
const neighbors = [];
const { col, row } = node;
if (row > 0) {
if(!grid[row - 1][col].isWall) neighbors.push(grid[row - 1][col]);
}
if (row < grid.length - 1) {
if(!grid[row + 1][col].isWall) neighbors.push(grid[row + 1][col]);
}
if (col > 0) {
if(!grid[row][col - 1].isWall) neighbors.push(grid[row][col - 1]);
}
if (col < grid[0].length - 1) {
if(!grid[row][col + 1].isWall) neighbors.push(grid[row][col + 1]);
}
return neighbors;
}
export function getShortestPathNodes(finishNode) {
const nodesInShortestPathOrder = [];
let currentNode = finishNode;
while (currentNode !== null) {
nodesInShortestPathOrder.unshift(currentNode);
currentNode = currentNode.previousNode;
}
return nodesInShortestPathOrder;
}
export function getShortestPathNodesBD(intersectNode) {
const nodesInShortestPathOrder = [];
let currentNode = intersectNode;
while (currentNode !== null) {
nodesInShortestPathOrder.unshift(currentNode);
currentNode = currentNode.previousNode;
}
currentNode = intersectNode.nextNode;
while(currentNode !== null) {
nodesInShortestPathOrder.push(currentNode);
currentNode = currentNode.nextNode;
}
return nodesInShortestPathOrder;
}