Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how can we build a directed graph representing the adjacency structure of the words, and run BFS on it. the program should take two file names as arguments. The first is a data file, and the second a test file. The output should be the distances between the words in the test file. For example, here is a sample run:

share|improve this question
4  
how much do you pay? – Thomas Jungblut May 12 '11 at 14:40
1  
If you are going to ask people to help with homework, at least copy the question in properly! More importantly, say what you have tried so far, and what you have got stuck on. – Nick Fortescue May 12 '11 at 14:44
And where is your sample run? – FrustratedWithFormsDesigner May 12 '11 at 14:45

closed as not a real question by Andreas Brinck, Wooble, Nick Fortescue, FrustratedWithFormsDesigner, unapersson May 12 '11 at 14:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

This is a simple network search algorithm. You can probably implement it yourself.

Create a node class and a link class.

Node has attributes:

  1. unique id
  2. list of links
  3. has_been_visited
  4. parent

Link has attributes:

  1. tuple of nodes that it links
  2. link weight (optional)

For the algorithm, you will want a source node (where you start) and a function to identify whether you have reached the destination node.

You should traverse from the start node through a link to a new node, check if that node is the destination node. if not, then go back to the parent and choose a new link to follow. If the parent has no more links, then continue onto it's children. This continues until you have found the destination node.

If all nodes are visited and you still haven't found the destination node, then the node does not exist in the graph.

That's the general idea. The actual implementation will involve more details, but nothing too dramatic.

share|improve this answer

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