You've always been intrigued with the "Six Degrees of Kevin Bacon" game (http://en.wikipedia.org/wiki/Six%5FDegrees%5Fof%5FKevin%5FBacon). Now, let's say if two actors have been in the same movie we call them "friends" and if two actors have not been in the same movie, we say they are not "friends." Now choose any two actors at random -- we want to calculate the number of degrees of separation and the path between them. How do you go about this problem? Discuss ideas, trade-offs, algorithm ideas, and more
|
|
|||||||||
|
migrated from superuser.com Aug 22 at 20:12 |
closed as not a real question by Alan Moore, divo, PhiLho, redsquare, Sinan Ünür Aug 22 at 20:12 |
|
|
This is basically a graph problem: Create a graph where the nodes are actors. There is an edge between two actors if the two actors have co-starred in a movie. Then you can use typical graph algorithms, such as Dijkstra's shortest path algorithm to determine the minimum degree of separation between two actors. |
||
|
|
