-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvertice.py
57 lines (41 loc) · 1.48 KB
/
vertice.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
#!/usr/bin/python3
import random
class Vertice(object):
def __init__(self, ciudad, latitud, longitud):
self.ciudad = ciudad
self.latitud = latitud
self.longitud = longitud
self.adyacentes = {}
def obtener_latitud(self):
return self.latitud
def obtener_longitud(self):
return self.longitud
def obtener_ciudad(self):
return self.ciudad
def obtener_adyacente_random(self):
return random.choice(list(self.adyacentes))
def obtener_adyacentes_claves(self):
return list(self.adyacentes.keys())
def obtener_tiempo(self, codigo):
if codigo not in self.adyacentes:
return None
datos_conexion = self.adyacentes.get(codigo)
return datos_conexion[0]
def obtener_precio(self, codigo):
if codigo not in self.adyacentes:
return None
datos_conexion = self.adyacentes.get(codigo)
return datos_conexion[1]
def obtener_cant_vuelos(self, codigo):
if codigo not in self.adyacentes:
return None
datos_conexion = self.adyacentes.get(codigo)
return datos_conexion[2]
def agregar_adyacente(self, codigo, tiempo, precio, cant_vuelos):
self.adyacentes[codigo] = [tiempo, precio, cant_vuelos]
def son_adyacentes(self, codigo_ady):
if codigo_ady in self.adyacentes:
return True
return False
def obtener_aeropuertos_claves(self):
return self.adyacentes.keys()