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:
|
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.
|
This is a simple network search algorithm. You can probably implement it yourself. Create a node class and a link class. Node has attributes:
Link has attributes:
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. |
|||
|
|