-
Notifications
You must be signed in to change notification settings - Fork 77
/
degrees_of_separation.py
78 lines (70 loc) · 2.08 KB
/
degrees_of_separation.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
"""
Execution:
python degrees_of_separation.py filename delimiter source
Data files:
https:
//algs4.cs.princeton.edu / 41graph / routes.txt
https:
//algs4.cs.princeton.edu / 41graph / movies.txt
% python degrees_of_separation.py routes.txt " " "JFK"
LAS
JFK
ORD
DEN
LAS
DFW
JFK
ORD
DFW
EWR
Not in database.
% python degrees_of_separation.py movies.txt "/" "Bacon, Kevin"
Kidman, Nicole
Bacon, Kevin
Woodsman, The(2004)
Grier, David Alan
Bewitched(2005)
Kidman, Nicole
Grant, Cary
Bacon, Kevin
Planes, Trains & Automobiles(1987)
Martin, Steve(I)
Dead Men Don't Wear Plaid(1982)
Grant, Cary
% python degrees_of_separation.py movies.txt "/" "Animal House (1978)"
Titanic(1997)
Animal House(1978)
Allen, Karen(I)
Raiders of the Lost Ark(1981)
Taylor, Rocky(I)
Titanic(1997)
To Catch a Thief(1955)
Animal House(1978)
Vernon, John(I)
Topaz(1969)
Hitchcock, Alfred(I)
To Catch a Thief(1955)
"""
from algs4.symbol_graph import SymbolGraph
from algs4.breadth_first_paths import BreadthFirstPaths
if __name__ == "__main__":
import sys
filename, delimiter, source = sys.argv[1], sys.argv[2], sys.argv[3]
sg = SymbolGraph(filename, delimiter)
graph = sg.graph()
if not sg.contains(source):
print(source, " not in database.")
else:
s = sg.index(source)
bfs = BreadthFirstPaths(graph, s)
for line in sys.stdin:
sink = line.strip()
if sg.contains(sink):
t = sg.index(sink)
if bfs.has_path_to(t):
for v in bfs.path_to(t):
print(" ", sg.name(v))
else:
print("not connected")
else:
print("input not contains source: ", source)