-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4.py
214 lines (187 loc) · 5.75 KB
/
4.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
import json
class Graph:
'''
A graph class for the entire TTC map
'''
def __init__(self, graph_dict=None, directed=True):
self.graph_dict = graph_dict or {}
self.directed = directed
if not directed:
self.make_undirected()
def make_undirected(self):
'''
create an undirected graph
'''
for a in list(self.graph_dict.keys()):
for (b, dist) in self.graph_dict[a].items():
self.graph_dict.setdefault(b, {})[a] = dist
# Add a link from A and B of given distance, and also add the inverse link if the graph is undirected
def connect(self, A, B, distance=1):
'''
Given the distance, connect the node A and B
If undirected, add the inverse link between A and B
'''
self.graph_dict.setdefault(A, {})[B] = distance
if not self.directed:
self.graph_dict.setdefault(B, {})[A] = distance
def get(self, a, b=None):
'''
get neighbours of the node
'''
links = self.graph_dict.setdefault(a, {})
if b is None:
return links
else:
return links.get(b)
def nodes(self):
'''
return a list of nodes in the graph
'''
s1 = set([k for k in self.graph_dict.keys()])
s2 = set([k2 for v in self.graph_dict.values() for k2, v2 in v.items()])
nodes = s1.union(s2)
return list(nodes)
class Node:
'''
A node class for the station
'''
def __init__(self, name:str, parent:str):
self.name = name
self.parent = parent
self.g = 0 # Distance to the start node (point)
self.h = 0 # Distance to the end node (point)
self.f = 0 # Total cost
def __eq__(self, other):
'''
compare nodes
'''
return self.name == other.name
def __lt__(self, other):
'''
sort nodes
'''
return self.f < other.f
def __repr__(self):
'''
print nodes
'''
return ('({0},{1})'.format(self.name, self.f))
def read_file(filename):
'''
Reads .json file and returns contents
@param myParam1: str
@return: dict
'''
with open(filename, "r") as myfile:
content = json.load(myfile)
return content
def makegraph(filename):
'''
Creates graph structure and defines nodes from .json file
@param myParam1: str
@return: Graph
'''
content = read_file(filename)
graph = Graph()
node_dict = {}
[val_list] = content.values()
for i in range(0, len(val_list)):
node_dict[val_list[i]["Name"]] = val_list[i]["Neighbours"]
for each_node in node_dict:
for each_neighbour in node_dict[each_node]:
graph.connect(each_node, each_neighbour["Name"], each_neighbour["Distance"])
graph.make_undirected()
return graph
class Graph:
'''
A graph class for the entire TTC map
'''
def __init__(self, graph_dict=None, directed=True):
self.graph_dict = graph_dict or {}
self.directed = directed
if not directed:
self.make_undirected()
def make_undirected(self):
'''
create an undirected graph
'''
for a in list(self.graph_dict.keys()):
for (b, dist) in self.graph_dict[a].items():
self.graph_dict.setdefault(b, {})[a] = dist
# Add a link from A and B of given distance, and also add the inverse link if the graph is undirected
def connect(self, A, B, distance=1):
'''
Given the distance, connect the node A and B
If undirected, add the inverse link between A and B
'''
self.graph_dict.setdefault(A, {})[B] = distance
if not self.directed:
self.graph_dict.setdefault(B, {})[A] = distance
def get(self, a, b=None):
'''
get neighbours of the node
'''
links = self.graph_dict.setdefault(a, {})
if b is None:
return links
else:
return links.get(b)
def nodes(self):
'''
return a list of nodes in the graph
'''
s1 = set([k for k in self.graph_dict.keys()])
s2 = set([k2 for v in self.graph_dict.values() for k2, v2 in v.items()])
nodes = s1.union(s2)
return list(nodes)
class Node:
'''
A node class for the station
'''
def __init__(self, name:str, parent:str):
self.name = name
self.parent = parent
self.g = 0 # Distance to the start node (point)
self.h = 0 # Distance to the end node (point)
self.f = 0 # Total cost
def __eq__(self, other):
'''
compare nodes
'''
return self.name == other.name
def __lt__(self, other):
'''
sort nodes
'''
return self.f < other.f
def __repr__(self):
'''
print nodes
'''
return ('({0},{1})'.format(self.name, self.f))
def read_file(filename):
'''
Reads .json file and returns contents
@param myParam1: str
@return: dict
'''
with open(filename, "r") as myfile:
content = json.load(myfile)
return content
def makegraph(filename):
'''
Creates graph structure and defines nodes from .json file
@param myParam1: str
@return: Graph
'''
content = read_file(filename)
graph = Graph()
node_dict = {}
[val_list] = content.values()
for i in range(0, len(val_list)):
node_dict[val_list[i]["Name"]] = val_list[i]["Neighbours"]
for each_node in node_dict:
for each_neighbour in node_dict[each_node]:
graph.connect(each_node, each_neighbour["Name"], each_neighbour["Distance"])
graph.make_undirected()
return graph