查找列表中最大和最小元素位置的 Java 程序
查找列表中最大和最小元素位置的 Java 程序如下 −
示例
import java.util.*; import java.util.Arrays; import java.util.Collections; public class Demo{ public static int index_val(int my_arr[], int t){ if (my_arr == null){ return -1; } int len = my_arr.length; int i = 0; while (i < len){ if (my_arr[i] == t){ return i; } else { i = i + 1; } } return -1; } public static void main(String[] args){ Integer[] my_arr = { 34, 67, 89, 99, 45, 77 }; int[] my_int_arr = { 34, 67, 89, 99, 45, 77 }; int min_val = Collections.min(Arrays.asList(my_arr)); int max_val = Collections.max(Arrays.asList(my_arr)); System.out.println("The minimum value in the array is : " + min_val); System.out.println("The maximum value in the array is : " + max_val); System.out.println("The position of the minimum value is: " + index_val(my_int_arr, min_val)); System.out.println("The position of the maximum value is: " + index_val(my_int_arr, max_val)); } }
输出
The minimum value in the array is : 34 The maximum value in the array is : 99 The position of the minimum value is: 0 The position of the maximum value is: 3
Demo 类中定义了一个线性查找函数,用于查找参数中指定元素的索引。main 函数定义了一个数组,并从数组中找出最小值和最大值。在此数组上调用线性查找函数,并将最小值和最大值也作为参数传递给线性查找函数。这将给出数组的最小值和最大值的索引。
广告