lol
This commit is contained in:
commit
613bef2496
108 changed files with 8397 additions and 0 deletions
17
src/zutil/algo/path/PathNode.java
Normal file
17
src/zutil/algo/path/PathNode.java
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
package zutil.algo.path;
|
||||
|
||||
|
||||
public interface PathNode {
|
||||
|
||||
public void setVisited(boolean b);
|
||||
|
||||
public boolean visited();
|
||||
|
||||
public Iterable<PathNode> getNeighbors();
|
||||
|
||||
public int getNeighborCost(PathNode neighbor);
|
||||
|
||||
public void setSourceNeighbor(PathNode neighbor);
|
||||
|
||||
public PathNode getSourceNeighbor();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue