public AStarQueue() { front = rear = null; }
public void setNext(AStarNode next) { this.next = next; }