MCPcopy Create free account
hub / github.com/subbarayudu-j/TheAlgorithms-Python / add_edge

Method add_edge

Graphs/graph_list.py:9–10  ·  view source on GitHub ↗
(self, u, v)

Source from the content-addressed store, hash-verified

7 self.graph = [[0] for i in range(vertex)]
8
9 def add_edge(self, u, v):
10 self.graph[u - 1].append(v - 1)
11
12 def show(self):
13 for i in range(self.vertex):

Callers 1

graph_list.pyFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected