-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.py
143 lines (130 loc) · 5.11 KB
/
main.py
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
from collections import deque
# to keep track of the blocks of maze
class Grid_Position:
def __init__(self, x, y):
self.x = x
self.y = y
# each block will have its own position and cost of steps taken
class Node:
def __init__(self, pos: Grid_Position, cost):
self.pos = pos
self.cost = cost
#BFS algo for the maze
def bfs(Grid, dest: Grid_Position, start: Grid_Position):
# to get neighbours of current node
adj_cell_x = [-1, 0, 0, 1]
adj_cell_y = [0, -1, 1, 0]
m, n = (len(Grid), len(Grid))
visited_blocks = [[False for i in range(m)]
for j in range(n)]
visited_blocks[start.x][start.y] = True
queue = deque()
sol = Node(start, 0)
queue.append(sol)
cells = 4
cost = 0
while queue:
current_block = queue.popleft() # Dequeue the front cell
current_pos = current_block.pos
if current_pos.x == dest.x and current_pos.y == dest.y:
print("Algorithm used = BFS")
print("Path found!!")
print("Total nodes visited = ", cost)
return current_block.cost
if current_block not in visited_blocks:
visited_blocks[current_pos.x][current_pos.y] = True
cost = cost + 1
x_pos = current_pos.x
y_pos = current_pos.y
for i in range(cells):
if x_pos == len(Grid) - 1 and adj_cell_x[i] == 1:
x_pos = current_pos.x
y_pos = current_pos.y + adj_cell_y[i]
if y_pos == 0 and adj_cell_y[i] == -1:
x_pos = current_pos.x + adj_cell_x[i]
y_pos = current_pos.y
else:
x_pos = current_pos.x + adj_cell_x[i]
y_pos = current_pos.y + adj_cell_y[i]
if x_pos < 12 and y_pos < 12 and x_pos >= 0 and y_pos >= 0:
if Grid[x_pos][y_pos] == 1:
if not visited_blocks[x_pos][y_pos]:
next_cell = Node(Grid_Position(x_pos, y_pos),
current_block.cost + 1)
visited_blocks[x_pos][y_pos] = True
queue.append(next_cell)
return -1
def create_node(x, y, c):
val = Grid_Position(x, y)
return Node(val, c + 1)
#dfs algo for maze
def dfs(Grid, dest: Grid_Position, start: Grid_Position):
adj_cell_x = [1, 0, 0, -1]
adj_cell_y = [0, 1, -1, 0]
m, n = (len(Grid), len(Grid))
visited_blocks = [[False for i in range(m)]
for j in range(n)]
visited_blocks[start.x][start.y] = True
stack = deque()
sol = Node(start, 0)
stack.append(sol)
neigh = 4
neighbours = []
cost = 0
while stack:
current_block = stack.pop()
current_pos = current_block.pos
if current_pos.x == dest.x and current_pos.y == dest.y:
print("Algorithm used = DFS")
print("Path found!!")
print("Total nodes visited = ", cost)
return current_block.cost
x_pos = current_pos.x
y_pos = current_pos.y
for i in range(neigh):
if x_pos == len(Grid) - 1 and adj_cell_x[i] == 1:
x_pos = current_pos.x
y_pos = current_pos.y + adj_cell_y[i]
if y_pos == 0 and adj_cell_y[i] == -1:
x_pos = current_pos.x + adj_cell_x[i]
y_pos = current_pos.y
else:
x_pos = current_pos.x + adj_cell_x[i]
y_pos = current_pos.y + adj_cell_y[i]
if x_pos != 12 and x_pos != -1 and y_pos != 12 and y_pos != -1:
if Grid[x_pos][y_pos] == 1:
if not visited_blocks[x_pos][y_pos]:
cost += 1
visited_blocks[x_pos][y_pos] = True
stack.append(create_node(x_pos, y_pos, current_block.cost))
return -1
def main():
maze = [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0],
[0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0],
[0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1],
[0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0],
[0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0],
[0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0],
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0],
[1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]
destination = Grid_Position(10, 0)
starting_position = Grid_Position(4, 11)
res = bfs(maze, destination, starting_position)
if res != -1:
print("Shortest path steps = ", res)
else:
print("Path does not exit")
print()
res2 = dfs(maze, destination, starting_position)
if res2 != -1:
print("Steps with backtracking = ", res2)
else:
print("Path does not exit")
# Press the green button in the gutter to run the script.
if __name__ == '__main__':
print("main start\n")
main()