Check whether the following Java code will satisfy your requirement.
private int min(int[] a, int... reject) {
int res = Integer.MAX_VALUE;
for (int i = 0; i < a.length; i++) {
boolean skip = false;
for (int r : reject) {
if (i == r) {
skip = true;
break;
}
}
if (!skip) {
res = Math.min(a[i], res);
}
}
return res;
}
Demo usage.
int[] a = { 2, 2, 2, 3, 3, 4, 3 };
System.out.println(min(a));
// this will print 2
System.out.println(min(a, 0, 1, 2));
// this will print 3
EDIT: You can modify the above function to return the index also.
EDIT2: To Young See Math.min javadoc http://java.sun.com/javase/6/docs/api/java/lang/Math.html#min(int,%20int)
EDIT3:
but can you explain this bit of
logic.. as following things are new to
me... 1) private int min(int[] a,
int... reject) 2) for (int r : reject)
{ if (i == r) { skip = true; break; }
}
1) The signature is making use of variable arguments. So you can pass all the index you want to reject as parameters.
2) The for loop is making sure that if the element with the index is to reject then simply skip it by making the skip flag to true. And we are breaking the loop there itself.
EDIT4: TO ALL - Young changed his question removing the requirement of skipping elements from the array. Now for the current question John Feminella's code snippet is the easiest way.