Java教程

Java查找数组第二个最小数字

通过对数组进行排序并返回第二个元素,我们可以在Java中找到数组中的第二个最小数字。让我们看一下完整的示例,以找到java数组中第二小的数字。
public class SecondSmallestInArrayExample{
    public static int getSecondSmallest(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[1];
    //2nd element because index starts from 0}
    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("Second smallest: "+getSecondSmallest(a,6));
        System.out.println("Second smallest: "+getSecondSmallest(b,7));
    }
}
输出:
Second smallest: 2Second smallest: 33

使用数组查找数组中的第二个最小数字

让我们看看另一个示例,使用数组获取Java数组中的第二个最小元素或数字。
import java.util.*;
public class SecondSmallestInArrayExample1{
    public static int getSecondSmallest(int[] a, int total){
        Arrays.sort(a);
        return a[1];
    }
    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("Second Smallest: "+getSecondSmallest(a,6));
        System.out.println("Second Smallest: "+getSecondSmallest(b,7));
    }
}
输出:
Second smallest: 2Second smallest: 33

使用集合查找数组中的第二个最小数字

让我们看看另一个示例,使用集合获取java数组中的第二个最小数字。
import java.util.*;
public class SecondSmallestInArrayExample2{
    public static int getSecondSmallest(Integer[] a, int total){
        List <Integer> list=Arrays.asList(a);
        Collections.sort(list);
        int element=list.get(1);
        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("Second Smallest: "+getSecondSmallest(a,6));
        System.out.println("Second Smallest: "+getSecondSmallest(b,7));
    }
}
输出:
Second smallest: 2Second smallest: 33
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4