在Java中查找未排序数组的平均值和中位数
在Java中,数组是一个对象。它是一种非基本数据类型,用于存储相同数据类型的多个值。
根据题目要求,我们必须在Java中找到未排序数组的平均值和中位数。
数组的平均值可以通过计算数组中所有元素的平均值来获得。
Mean= (sum of all elements present in array) / (total number of elements present)
数组的中位数表示在奇数个元素的已排序数组中位于中间的元素;如果已排序数组包含偶数个元素,则中位数可以通过计算中间两个数字的平均值来获得。
让我们探讨这篇文章,看看如何使用Java编程语言来实现。
举几个例子
示例1
给定数组 = [12, 23, 34, 45, 15]。
该数组的平均值 = (12 + 23 + 34 + 45 + 15) / (5) = 129 / 5 = 25.8
给定数组的已排序数组 = [12, 15, 23, 34, 45]
由于这是一个奇数元素数组,因此中位数是中间元素。
中位数 = 23
示例2
给定数组 = [38, 94, 86, 63, 36]。
该数组的平均值 = (38 + 94 + 86 + 63 + 36) / (5) = 317 / 5 = 63.4
给定数组的已排序数组 = [36, 38, 63, 86, 94]
由于这是一个奇数元素数组,因此中位数是中间元素。
中位数 = 63
示例3
给定数组 = [54, 67, 23, 95, 24, 60]。
该数组的平均值 = (54 + 67 + 23 + 95 + 24 + 60) / (6) = 323 / 6 = 53.83
由于这是一个偶数元素数组,因此中位数是中间两个元素的平均值。
给定数组的已排序数组 = [23, 24, 54, 60, 67, 95]
中位数 = (54 + 60) / 2 = 57
算法
步骤1 - 声明并初始化一个整数类型的数组。
步骤2 - 将数组按升序排序。
步骤3 - 在第一个用户自定义方法中,我们找到平均值。在第二个用户自定义方法中,我们找到中位数。
步骤4 - 调用这两个用户自定义方法,并将数组和长度值作为参数传递。
步骤5 - 找到平均值和中位数后,将这两个值打印为输出。
语法
要获取数组的长度(数组中的元素个数),数组有一个内置属性length
以下是其语法:
array.length
其中,“array”指的是数组引用。
您可以使用Arrays.sort()方法将数组按升序排序。
Arrays.sort(array_name);
多种方法
我们提供了不同方法的解决方案
使用静态输入方法
使用用户输入方法
让我们一一查看程序及其输出。
方法1:使用静态输入方法
在这种方法中,我们通过静态输入方法声明一个数组,并将此数组及其长度作为参数传递到我们用户自定义的方法中,然后在方法内部使用算法可以找到平均值和中位数。
示例
import java.util.*; public class Main { public static void main(String args[]) { //declare an integer type array and store some random integer values int inputArray[] = { 23, 24, 65, 87, 85, 12, 76,21}; //declare an integer variable to store the length of the given array int len = inputArray.length; //call the user defined method and print the output System.out.println("Mean of given array "+ Arrays.toString(inputArray)+ " is = " + mean(inputArray, len)); System.out.println("Median of given array "+ Arrays.toString(inputArray) + " is = " + median(inputArray, len)); } // user defined function to find mean value public static double mean(int arr[], int len) { //declare a Integer variable to store the sum value of given array's elements int sum = 0; //initiate the loop to calculate the sum value of all the elements of given array for (int i = 0; i < len; i++) sum += arr[i]; //return the mean value return (double)(arr[(len - 1) / 2] + arr[len / 2]) / 2.0; } //user defined function to find median value public static double median(int arr[], int len) { // sort the given array in ascending order Arrays.sort(arr); // check whether the given array consists of even or odd number of elements if (len % 2 != 0) { return (double)arr[len / 2]; } return (double)(arr[(len - 1) / 2] + arr[len / 2]) / 2.0; } }
输出
Mean of given array [23, 24, 65, 87, 85, 12, 76, 21] is = 49.125 Median of given array [23, 24, 65, 87, 85, 12, 76, 21] is = 44.5
方法2:使用用户输入方法
在这种方法中,我们通过用户输入方法声明一个数组,并将此数组及其长度作为参数传递到我们用户自定义的方法中,然后在方法内部使用算法可以找到平均值和中位数。
示例
import java.util.*; public class Main { public static void main(String args[]) { //create the Objectof Scanner class Scanner sc=new Scanner(System.in); //ask the user to enter the length of the array System.out.print("Enter the number of elements: "); //declare a variable to store the length int len=sc.nextInt(); //declare an empty array of given length int[] inputArray = new int[len]; System.out.println("Enter the elements: "); //initiate the loop to store the elements into the array for(int i=0; i < len; i++) { //store the elements intop the array inputArray[i]=sc.nextInt(); } //call the user defined method and print the output System.out.println("Mean of given array "+ Arrays.toString(inputArray) + " is = " + mean(inputArray, len)); System.out.println("Median of given array "+ Arrays.toString(inputArray) + " is = " + median(inputArray, len)); } // user defined function to find mean value public static double mean(int arr[], int len) { //declare a Integer variable to store the sum value of given array's elements int sum = 0; //initiate the loop to calculate the sum value of all the elements of given array for (int i = 0; i < len; i++) sum += arr[i]; //return the mean value return (double)sum / (double)len; } //user defined function to find median value public static double median(int arr[], int len) { // sort the given array in ascending order Arrays.sort(arr); // check whether the given array consists of even or odd number of elements if (len % 2 != 0){ return (double)arr[len / 2]; } System.out.println(arr[(len - 1)]); System.out.println(arr[(len - 1)]); return (double)(arr[(len - 1) / 2] + arr[len / 2]) / 2.0; } }
输出
Enter the number of elements: 8 Enter the elements: 2 5 3 7 1 6 8 4 Mean of given array [2, 5, 3, 7, 1, 6, 8, 4] is = 4.5 Median of given array [2, 5, 3, 7, 1, 6, 8, 4] is = 4.5
在这篇文章中,我们探讨了如何使用Java编程语言在未排序数组中查找数组的平均值和中位数。