下面三个方法是分别求数组任意两个/三个/四个下标中最大值下标。问题来了,求一个数组任意个下标中最大值下标是多少。应该怎么处理呢?请别吐槽什么实用性在哪什么的,欢迎各位提出自己的见解。
/**
* 求数组中任意两个下标的中最大值下标
*/
public static int simmax2(char x[], int a, int b) {
int l = x.length ;
if( l < a-1 || l < b-1 )throw new ArrayIndexOutOfBoundsException("method simmax2 ArrayIndexOutOfBoundsException ") ;
return (x[a] > x[b] ? a : b);
}
/**
* 求数组中任意三个下标的中最大值下标
*/
public static int simmax3(char x[], int a, int b, int c) {
int l = x.length ;
if( l < a-1 || l < b-1 || l < c-1 )throw new ArrayIndexOutOfBoundsException("method simmax3 ArrayIndexOutOfBoundsException ") ;
return (x[a] > x[b] ? (x[b] > x[c] ? a : x[a] > x[c] ? a : c) : ( x[b] > x[c] ? b : c));
}
/**
* 求数组中任意四个下标的中最大值下标
*/
public static int simmax4( char x[], int a, int b, int c, int d){
int l = x.length ;
if( l < a-1 || l < b-1 || l < c-1 || l < d-1 )throw new ArrayIndexOutOfBoundsException("method simmax4 ArrayIndexOutOfBoundsException ") ;
return (x[a] > x[b]) ? (x[c] > x[d] ? (x[a] > x[c] ? a : c ) : (x[a] > x[d] ? a : d)) : (x[c]>x[d] ? (x[b] > x[c] ? b : c) : ( x[b] > x[d] ? b : d)) ;
}