Remove argument cmp from max and secondMax

This commit is contained in:
2021-09-03 11:52:29 +02:00
parent 7b4f76f373
commit f370e69dd1

View File

@ -25,9 +25,9 @@ public interface OrderedTreeProcessor<V, T> {
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);