yi4521870 2013-12-03 16:07
浏览 444
已采纳

求一个数组中任意几个下标中最大值的下标

下面三个方法是分别求数组任意两个/三个/四个下标中最大值下标。问题来了,求一个数组任意个下标中最大值下标是多少。应该怎么处理呢?请别吐槽什么实用性在哪什么的,欢迎各位提出自己的见解。

/**
 * 求数组中任意两个下标的中最大值下标 
 */
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)) ;
}
  • 写回答

2条回答 默认 最新

  • weixin_42405879 2013-12-03 16:45
    关注

    [code="java"]
    public static int simmax(char x[], int... indexes) {
    int indexOfMax=indexes[0];
    for(int n=1;n if(x[indexes[n]]>x[indexOfMax])
    indexOfMax = indexes[n];
    return indexOfMax;
    }
    [/code]
    弄个变量保存最大值就OK了,你能用三目运算符写出这么复杂的表达式,怎么就不会转下弯呢?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥500 高有偿提问!求优化设计微信小程序
  • ¥15 matlab在安装时报错 无法找到入口 无法定位程序输入点
  • ¥15 收益高的广告联盟有哪些
  • ¥15 Android Studio webview 的使用问题, 播放器横屏全屏
  • ¥15 删掉jdk后重新下载,Java web所需要的eclipse无法使用
  • ¥15 uniapp正式环境中通过webapi将本地数据推送到设备出现的跨域问题
  • ¥15 xui建立节点,显示错误
  • ¥15 关于#单片机#的问题:开始、复位、十进制的功能可以实现,但是切换八进制的功能无法实现(按下按键也没有效果),把初始状态调成八进制,也是八进制可以实现但是切换到十进制不行(相关搜索:汇编语言|计数器)
  • ¥15 VINS-Mono或Fusion中feature_manager中estimated_depth是特征的深度还是逆深度?
  • ¥15 谷歌浏览器如何备份抖音网页数据