예제 #1
0
 public static void main(String[] args) {
   Map<Character, ImmutableGraphNode<Character>> graph = GraphFactory.createSimpleGraph();
   printPath(
       AStarPathFinder.findPath(graph.get('A'), graph.get('D'), new MyNodeExpander<Character>()));
 }