view src/tree/Map.java @ 3:24613dfbaeab default tip

finished implementing AVL-Tree remove operation
author Shoshi TAMAKI <shoshi@cr.ie.u-ryukyu.ac.jp>
date Wed, 10 Aug 2011 23:35:57 +0900
parents a9cb12a7f995
children
line wrap: on
line source

package tree;

public interface Map<K,V>
{
	public void put(K _key,V _value);
	public V get(K _key);
}