Java第三大的数,Java通过排序找出数组第三大数字

Java通过排序找出数组第三大数字

1 方式一:对数组进行排序并返回第三大数字

通过对数组进行排序并返回第三大数字,我们可以找到java中的第三大数字。让我们看看完整的示例,以找到java数组中的第三大数字。

/**

* 一点教程网: http://www.yiidian.com

*/

public class ThirdLargestInArrayExample{

public static int getThirdLargest(int[] a, int total){

int temp;

for (int i = 0; i < total; i++)

{

for (int j = i + 1; j < total; j++)

{

if (a[i] > a[j])

{

temp = a[i];

a[i] = a[j];

a[j] = temp;

}

}

}

return a[total-3];

}

public static void main(String args[]){

int a[]={1,2,5,6,3,2};

int b[]={44,66,99,77,33,22,55};

System.out.println("Third Largest: "+getThirdLargest(a,6));

System.out.println("Third Largest: "+getThirdLargest(b,7));

}

}

以上代码输出结果为:

Third Largest:3

Third Largest:66

2 方式二:使用Arrays类找出数组的第三大数字

让我们看看另一个示例,该示例使用Arrays在Java数组中获取第三大元素的数字。

/**

* 一点教程网: http://www.yiidian.com

*/

import java.util.*;

public class ThirdLargestInArrayExample1{

public static int getThirdLargest(int[] a, int total){

Arrays.sort(a);

return a[total-3];

}

public static void main(String args[]){

int a[]={1,2,5,6,3,2};

int b[]={44,66,99,77,33,22,55};

System.out.println("Third Largest: "+getThirdLargest(a,6));

System.out.println("Third Largest: "+getThirdLargest(b,7));

}}

以上代码输出结果为:

Third Largest: 3

Third Largest: 66

3 方式三:使用Collections获取数组的第三大数字

/**

* 一点教程网: http://www.yiidian.com

*/

import java.util.*;

public class ThirdLargestInArrayExample2{

public static int getThirdLargest(Integer[] a, int total){

List list=Arrays.asList(a);

Collections.sort(list);

int element=list.get(total-3);

return element;

}

public static void main(String args[]){

Integer a[]={1,2,5,6,3,2};

Integer b[]={44,66,99,77,33,22,55};

System.out.println("Third Largest: "+getThirdLargest(a,6));

System.out.println("Third Largest: "+getThirdLargest(b,7));

}}

以上代码输出结果为:

Third Largest: 3

Third Largest: 66

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值