I have a list of Activities and a list of Activities and the Start Activity, which I am supposedly fetching by parsing an XML.
Now I need to find the Possible Paths from Start to End in Java.
I googled some algo's that could do the same but, Dijkstra requires a directed conencted graph(which we dont have) and others are search and traversal algo's.
Please help.