Graph, Deep First Search, Graph with Matrix, Graph with List

This commit is contained in:
Francisco Matias
2017-06-22 18:53:33 -03:00
parent 1ce58efe1f
commit 285720f76d
3 changed files with 92 additions and 0 deletions

27
Graphs/Graph_list.py Normal file
View File

@@ -0,0 +1,27 @@
class Graph:
def __init__(self, vertex):
self.vertex = vertex
self.graph = [[0] for i in range(vertex)]
def add_edge(self, u, v):
self.graph[u - 1].append(v - 1)
def show(self):
for i in range(self.vertex):
print('%d: '% (i + 1), end=' ')
for j in self.graph[i]:
print('%d-> '% (j + 1), end=' ')
print(' ')
g = Graph(5)
g.add_edge(1,3)
g.add_edge(2,3)
g.add_edge(3,4)
g.add_edge(3,5)
g.add_edge(4,5)
g.show()