FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
algorithms-python/algorithms/graph/find_path.py at master · ivan1911/algorithms-python · GitHub
ivan1911
/
algorithms-python
Public
forked from
keon/algorithms
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
algorithms-python
/
algorithms
/
graph
/
find_path.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
55 lines (52 loc) · 1.49 KB
Breadcrumbs
algorithms-python
/
algorithms
/
graph
/
find_path.py
Copy path
File metadata and controls
55 lines (52 loc) · 1.49 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
"""
Functions for finding paths in graphs.
"""
# pylint: disable=dangerous-default-value
def
find_path
(
graph
,
start
,
end
,
path
=
[]):
"""
Find a path between two nodes using recursion and backtracking.
"""
path
=
path
+
[
start
]
if
start
==
end
:
return
path
if
not
start
in
graph
:
return
None
for
node
in
graph
[
start
]:
if
node
not
in
path
:
newpath
=
find_path
(
graph
,
node
,
end
,
path
)
return
newpath
return
None
# pylint: disable=dangerous-default-value
def
find_all_path
(
graph
,
start
,
end
,
path
=
[]):
"""
Find all paths between two nodes using recursion and backtracking
"""
path
=
path
+
[
start
]
if
start
==
end
:
return
[
path
]
if
not
start
in
graph
:
return
[]
paths
=
[]
for
node
in
graph
[
start
]:
if
node
not
in
path
:
newpaths
=
find_all_path
(
graph
,
node
,
end
,
path
)
for
newpath
in
newpaths
:
paths
.
append
(
newpath
)
return
paths
def
find_shortest_path
(
graph
,
start
,
end
,
path
=
[]):
"""
find the shortest path between two nodes
"""
path
=
path
+
[
start
]
if
start
==
end
:
return
path
if
start
not
in
graph
:
return
None
shortest
=
None
for
node
in
graph
[
start
]:
if
node
not
in
path
:
newpath
=
find_shortest_path
(
graph
,
node
,
end
,
path
)
if
newpath
:
if
not
shortest
or
len
(
newpath
)
<
len
(
shortest
):
shortest
=
newpath
return
shortest
Back
|
FazBrowse Home
|
New Git URL