Ejemplo n.º 1
0
        public LinkedList <string> calcFastestWay(string source, string dest)
        {
            BestFirstSearch bfs = new BestFirstSearch();

            bfs.BuildGraph();
            bfs.Search(source, dest, "time");
            return(bfs.path);
        }