I have data in database which is in the form of:
A -> B
C -> D
B -> C
F -> G
G -> J
X -> Z
This basically means that A goes to B, C goes to D etc. Given this data and a node (such as C) I would like to construct the complete path that C is found that is A -> B -> C -> D . I tried to do this by using a few dictionaries and recursive loops but I don't like such a sluggish solution since there are lots of data in db. What is a better way to solve this problem ? In terms of both algorithm and the data structure ? Any ideas or hints are appreciated.
