view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/NodePath.java @ 190:a01507a9f826 default tip

change TreeMapBenchMark
author tatsuki
date Tue, 21 Apr 2015 17:28:20 +0900
parents 809f813d1083
children
line wrap: on
line source

package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store;

import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.util.Pair;

public interface NodePath extends Iterable<Integer>
{
	public NodePath add(int pos);
	public Pair<Integer,NodePath> pop();
	public NodePath tail();
	public int size();
	public Pair<Integer,NodePath> last();
}