vote up -5 vote down star

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

flag
6  
Okay, stop posting your homework questions. – Brandon Aug 21 at 17:56
2  
Mmm... bacon... – Shog9 Aug 21 at 18:22

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

1 Answer

vote up 3 vote down

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.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.