www.pudn.com > FindTheShortestPath-java.rar > Node.java
package shortestpath; /** *Title:
* *Description:
* *Copyright: Copyright (c) 2007
* *Company:
* * @author not attributable * @version 1.0 */ public class Node { String city; int x; int y; Node() { city = null; x = y = 0; } Node(String s) { city = s; x = y = 0; } Node(String s, int x1, int y1) { city = s; x = x1; y = y1; } }