常见算法1

/**
* Returns the index of the min of the three indexed chars.
* 获取数组三个下标中,最小值的下标 分支最多三个,最少两个。
*/
private static int min(char x[], int a, int b, int c) {

int i= 0 ;
if( x[a] < x[b] ){
if( x[b]<x[c] ){
i=a;
}else{
if( x[a]<x[c] ){
i=a;
}else{
i=c;
}
}
}else{
if( x[b]>x[c] ){
i=c;
}else{
i=b;
}
}
i = (x[a] < x[b] ? (x[b] < x[c] ? a : x[a] < x[c] ? a : c) : (x[b] > x[c] ? c : b));//等同于上面的方法
return i ;
}

/**
* Returns the index of the median of the three indexed chars.
* 获取数组三个下标中,最小值的下标 分支最多三个,最少两个。
*/
private static int med(char x[], int a, int b, int c) {

int i= 0 ;
if( x[a] < x[b] ){
if( x[b]<x[c] ){
i=b;
}else{
if(x[a]<x[c]){
i=c;
}else{
i=a;
}
}
}else{
if( x[b]>x[c] ){
i=b;
}else{
if( x[a]>x[c] ){
i=c;
}else{
i=b;
}
}
}
i = (x[a] < x[b]? (x[b] < x[c] ? b : x[a] < x[c] ? c : a) : (x[b] > x[c] ? b : x[a] > x[c] ? c : a));//等同于上面的方法
return i ;
}

/**
* Returns the index of the max of the three indexed chars.
* 获取数组三个下标中,最大值的下标 分支最多三个,最少两个。
*/
private static int max(char x[], int a, int b, int c) {

int i= 0 ;
if( x[a] > x[b] ){
if( x[b] > x[c] ){
i=a ;
}else{
if(x[a]>x[c]){
i=a;
}else{
i=c;
}
}
}else{
if( x[b]>x[c] ){
i=b;
}else{
i=c;
}
}
i = (x[a] > x[b] ? (x[b] > x[c] ? a : x[a] > x[c] ? a : c) : ( x[b] > x[c] ? b : c));//等同于上面的方法
return i ;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值