Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/TheAlgorithms/Python
/ bfs_time
Method
bfs_time
graphs/directed_and_undirected_weighted_graph.py:485–489 ·
view source on GitHub ↗
(self, s=-2)
Source
from the content-addressed store, hash-verified
483
return
end - begin
484
485
def
bfs_time(self, s=-2):
486
begin = time()
487
self.bfs(s)
488
end = time()
489
return
end - begin
Callers
nothing calls this directly
Calls
1
bfs
Method · 0.95
Tested by
no test coverage detected