Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It's trivial to write a function to determine the min/max value in an array, such as:

/**
 * 
 * @param chars
 * @return the max value in the array of chars
 */
private static int maxValue(char[] chars) {
	int max = chars[0];
	for (int ktr = 0; ktr < chars.length; ktr++) {
		if (chars[ktr] > max) {
			max = chars[ktr];
		}
	}
	return max;
}

but isn't this already done somewhere?

share|improve this question

6 Answers

up vote 17 down vote accepted

Using Commons Lang (to convert) + Collections (to min/max)

import java.util.Arrays;
import java.util.Collections;

import org.apache.commons.lang.ArrayUtils;

public class MinMaxValue {

    public static void main(String[] args) {
        char[] a = {'3', '5', '1', '4', '2'};

        List b = Arrays.asList(ArrayUtils.toObject(a));

        System.out.println(Collections.min(b));
        System.out.println(Collections.max(b));
   }
}
share|improve this answer

Yes, it's done in the Collections class. Note that you will need to convert your primitive char array to a Character[] manually.

A short demo:

import java.util.*;

public class Main {

    public static Character[] convert(char[] chars) {
        Character[] copy = new Character[chars.length];
        for(int i = 0; i < copy.length; i++) {
            copy[i] = Character.valueOf(chars[i]);
        }
        return copy;
    }

    public static void main(String[] args) {
        char[] a = {'3', '5', '1', '4', '2'};
        Character[] b = convert(a);
        System.out.println(Collections.max(Arrays.asList(b)));
    }
}
share|improve this answer
can you show me the code to do that? – Rosarch Sep 27 '09 at 20:18
Collections.min(myCollection); If you want to use it for arrays, you can do it like Collections.min(Arrays.asList(myArray)); – Zed Sep 27 '09 at 20:33
1  
converting a char [] to a Character [] only to determine the maximum is quite inefficient - better create a utility class with static methods for each primitive type similar to java.util.Arrays: java.sun.com/javase/6/docs/api/java/util/Arrays.html – Christoph Sep 27 '09 at 20:33
@Christoph: yes, if the size of the array is large, I would agree. Simply stating it is "inefficient" does not make sense if the application in question makes many database calls and/or I/O operations and the size of the array is (relative) small. – Bart Kiers Sep 27 '09 at 20:41
you should use Character.valueOf(chars[i]) instead of new Character(chars[i]) for performance reasons: java.sun.com/javase/6/docs/api/java/lang/… – Christoph Sep 27 '09 at 20:45
show 2 more comments

The Google Guava library has min and max methods in its Chars, Ints, Longs, etc. classes.

So you can simply use:

Chars.min(myarray)

No conversions are required and presumably it's efficiently implemented.

share|improve this answer
2  
It's implemented more or less like in the question except it throws an IllegalArgumentException for an array of length 0. (code.google.com/p/guava-libraries/source/browse/trunk/src/com/…) – ColinD Dec 10 '09 at 20:45

What about sorting the array? Arrays.sort()

share|improve this answer
beware that Arrays.sort() sorts in place - if you still need the original array, you'll need to make a copy of it first. – drevicko Aug 30 '12 at 4:57

Here's a utility class providing min/max methods for primitive types: Primitives.java

share|improve this answer

@Chiron: Sorting the array to find the min/max does not scale well. Sorting is O(n log n), while the straightforward min/max algorithms are O(n).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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