vote up 1 vote down star

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?

flag

70% accept rate

5 Answers

vote up 2 vote down check

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));
   }
}
link|flag
vote up 1 vote down

You can also use Arrays#sort(). No need to convert it to a Collection, it only unnecessarily adds overhead, even though it's relatively small.

Example:

public static int minValue(char[] chars) {
    char[] clone = chars.clone();
    Arrays.sort(clone);
    return clone[0];
}

public static int maxValue(char[] chars) {
    char[] clone = chars.clone();
    Arrays.sort(clone);
    return clone[clone.length - 1];
}

Note: if you don't worry the changes being reflected in the array, you can leave clone() away.

link|flag
vote up 1 vote down

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.

link|flag
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/…) – ColinD Dec 10 at 20:45
vote up 1 vote down

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

link|flag
vote up 4 vote down

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)));
    }
}
link|flag
can you show me the code to do that? – Rosarch Sep 27 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 at 20:33
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/… – Christoph Sep 27 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 K. Sep 27 at 20:41
you should use Character.valueOf(chars[i]) instead of new Character(chars[i]) for performance reasons: java.sun.com/javase/6/… – Christoph Sep 27 at 20:45
show 1 more comment

Your Answer

Get an OpenID
or

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