Remove argument cmp from max and secondMax
This commit is contained in:
@ -25,9 +25,9 @@ public interface OrderedTreeProcessor<V, T> {
|
|||||||
|
|
||||||
boolean removeAll(T t, V v, Comparator<V> cmp);
|
boolean removeAll(T t, V v, Comparator<V> cmp);
|
||||||
|
|
||||||
V max(T t, Comparator<V> cmp);
|
V max(T t);
|
||||||
|
|
||||||
V secondMax(T t, Comparator<V> cmp);
|
V secondMax(T t);
|
||||||
|
|
||||||
int height(T t);
|
int height(T t);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user