找出数组中第二大的值

1.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import java.util.Arrays;
import java.util.Random;


public class 找出数组中第二大的值 {
public static int SecondMax(int a[]){
//存储数组中最大值
int max=a[0];
//存储数组中第二大的值
int secondmax=Integer.MIN_VALUE;
//遍历数组
for(int i=1;i<a.length;i++){
//如果当前值大于数组的最大值,则第二大的值等于先前定义最大值,最大值等于当前值
if(a[i]>max){
secondmax=max;
max=a[i];
}
if(a[i]<max){
//如果当前值不比最大值大那就和第二大的值做对比
if(a[i]>secondmax){
secondmax=a[i];
}

}

}
return secondmax;

}


public static void main(String[] args) {
Random r=new Random();
int arr[]=new int[5];
for(int i=0;i<arr.length;i++){
arr[i]=r.nextInt(9);
}
System.out.println(Arrays.toString(arr));
System.out.println(SecondMax(arr));
}

}
-------------本文结束感谢您的阅读-------------
0%