vote up 3 vote down star

The Java Collections.max takes only a collection of a sortable object. However since the collection is not necessarily sorted, I don't see any reason not to implement the same max function for iterable types.

Is there a max method for Iterable<T extends Comparable<? super T>> in java's standard library?

flag

Where does it says that Collections.max only takes a sorted collection? From the docs it looks like it will take anything that implements Collection. – Outlaw Programmer Jan 14 '09 at 17:48
@Outlaw Programmer: that's what he said. "...since the collection is not necessarily sorted..." – mmyers Jan 14 '09 at 17:53

4 Answers

vote up 3 vote down check

Collections.max was introduced in 1.2. Iterable was introduced in 1.5.

It's rare to have an Iterable that is not a Collection. If you do then it's straightforward to implement (be careful to read the spec). If you think it is really important you can submit an RFE on bugs.sun.com (or vote if there is already one there).

link|flag
Implementing an Iterable is implementing two functions, implementing a collection is more than double the work. So if I want to make a quick iterable of a class I created it's much easier. – Elazar Leibovich Jan 14 '09 at 20:19
Collections.max(new ArrayList<X>(0) { @Override public Iterator<X> iterator() { return iterable.iterator(); }}) ;) – Tom Hawtin - tackline Jan 14 '09 at 21:24
vote up 1 vote down

A simpler version using Google Collections:

import java.util.Collections;
import java.util.Comparable;
import java.util.Iterable;
import com.google.common.collect.Collections2;

// ...

public static <T extends Comparable<? super T>> T max(Iterable<T> elements) {
  return Collections.max(Collections2.forIterable(elements));
}
link|flag
vote up 0 vote down

By definition the elements of the collection must be "sortable" (specifically, they must implements Comparable) since in order to compute the maximum, it must be possible to work out whether one element is greater than another (which is exactly what Comparable means).

The max() method in the Collections class has essentially the exact type signature you posted there, so it should suit your purpose.

link|flag
I want to compute the max of an Iterable which is not a Collection – Elazar Leibovich Jan 14 '09 at 20:14
vote up 0 vote down

Hmm… no, there isn’t. If you want to use Collections.max() you have to convert your Iterable into a Collection first, probably by adding all of the elements into a List (or Set, depending on the data).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.