comparison src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/NodePath.java @ 138:b998fdc99bc0

add NodePathCompare and Test
author one
date Mon, 27 Oct 2014 19:04:59 +0900
parents 6e9a8d26e0cf
children 809f813d1083
comparison
equal deleted inserted replaced
137:7334f78a92c3 138:b998fdc99bc0
7 public NodePath add(int pos); 7 public NodePath add(int pos);
8 public Pair<Integer,NodePath> pop(); 8 public Pair<Integer,NodePath> pop();
9 public NodePath tail(); 9 public NodePath tail();
10 public int size(); 10 public int size();
11 public Pair<Integer,NodePath> last(); 11 public Pair<Integer,NodePath> last();
12 public boolean compare(NodePath path);
12 } 13 }