i have two classes the first
public interface Map<K extends Comparable<K>, T> { ... }
how to implements the interface to my second class
public class BST<T> implements ... ?
i have two classes the first
public interface Map<K extends Comparable<K>, T> { ... }
how to implements the interface to my second class
public class BST<T> implements ... ?
Comments
Post a Comment