public class CityTester1 { public static void main(String[] args) { KateCity test1 = new KateCity(); test1.selectEdges(0, 200); //test1.printEdges(); KateListGraph cities = test1.makeGraph(); System.out.println(cities.numberOfVertices() + " " + cities.numberOfEdges()); cities.printAdjacencyList("Yakima WA"); String[] shortestPath = cities.shortestPath("Yakima WA", "Wilmington DE"); for(int i = 0; i < shortestPath.length; i++){ System.out.println(shortestPath[i]); } } }