Java Arrays sort(double[] a) 方法



描述

Java Arrays sort(double[] a) 方法将指定的双精度数数组按升序排序。此方法使用双枢轴快速排序算法,该算法将数组分解成子数组,对它们进行排序,然后合并以生成排序后的数组。

声明

以下是java.util.Arrays.sort(double[] a) 方法的声明

public static void sort(double[] a)

参数

a − 要排序的数组。

返回值

此方法不返回任何值。

异常

Java Arrays sort​(double[] a, int fromIndex, int toIndex) 方法

描述

Java Arrays sort(double[] a, int fromIndex, int toIndex) 方法将给定双精度数数组的指定范围按升序排序。此方法使用双枢轴快速排序算法,该算法将数组分解成子数组,对它们进行排序,然后合并以生成排序后的数组。

声明

以下是java.util.Arrays.sort(double[] a, int fromIndex, int toIndex) 方法的声明

public static void sort​(double[] a, int fromIndex, int toIndex)

参数

  • a − 要排序的数组。

  • fromIndex − 要排序的第一个元素的索引(包含)。

  • toIndex − 要排序的最后一个元素的索引(不包含)。

返回值

此方法不返回任何值。

异常

  • IllegalArgumentException − 如果 fromIndex > toIndex

  • ArrayIndexOutOfBoundsException − 如果 fromIndex < 0 或 toIndex > array.length

双精度数数组排序示例

以下示例演示了 Java Arrays sort(double[]) 方法的使用。首先,我们创建了一个双精度数数组,并打印了原始数组。使用 sort() 方法对数组进行排序,然后打印排序后的数组。

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {
      // initialize unsorted array
      double arr[] = { 11.0, 54.0, 23.0, 32.0, 15.0, 24.0, 31.0, 12.0 };

      System.out.print("Original Array: [");
      // print the array
      for (int i = 0; i < arr.length; i++) {
         System.out.print(arr[i] + " ");
      }
      System.out.println("]");
     
      // sort the array
      Arrays.sort(arr);

      System.out.print("Sorted Array: [");
      // print the array
      for (int i = 0; i < arr.length; i++) {
         System.out.print(arr[i] + " ");
      }
      System.out.println("]");
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Original Array: [11.0 54.0 23.0 32.0 15.0 24.0 31.0 12.0 ]
Sorted Array: [11.0 12.0 15.0 23.0 24.0 31.0 32.0 54.0 ]

使用范围对双精度数数组进行排序的示例

以下示例演示了 Java Arrays sort(double[], int, int) 方法的使用。首先,我们创建了一个双精度数数组,并打印了原始数组。使用 sort() 方法对数组进行排序,然后打印排序后的数组。

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {
      // initialize unsorted array
      double arr[] = { 11.0, 54.0, 23.0, 32.0, 15.0, 24.0, 31.0, 12.0 };

      System.out.print("Original Array: [");
      // print the array
      for (int i = 0; i < arr.length; i++) {
         System.out.print(arr[i] + " ");
      }
      System.out.println("]");
     
      // sort the array
      Arrays.sort(arr, 0, arr.length);

      System.out.print("Sorted Array: [");
      // print the array
      for (int i = 0; i < arr.length; i++) {
         System.out.print(arr[i] + " ");
      }
      System.out.println("]");
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Original Array: [11.0 54.0 23.0 32.0 15.0 24.0 31.0 12.0 ]
Sorted Array: [11.0 12.0 15.0 23.0 24.0 31.0 32.0 54.0 ]

对双精度数子数组进行排序的示例

以下示例演示了 Java Arrays sort(double[], int, int) 方法的使用。首先,我们创建了一个双精度数数组,并打印了原始数组。使用 sort() 方法对子数组进行排序,然后打印排序后的数组。

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {
      // initialize unsorted array
      double arr[] = { 11.0, 54.0, 23.0, 32.0, 15.0, 24.0, 31.0, 12.0 };

      System.out.print("Original Array: [");
      // print the array
      for (int i = 0; i < arr.length; i++) {
         System.out.print(arr[i] + " ");
      }
      System.out.println("]");
     
      // sort first five elements of the array 
      Arrays.sort(arr, 0, 5);

      System.out.print("Sorted Array: [");
      // print the array
      for (int i = 0; i < arr.length; i++) {
         System.out.print(arr[i] + " ");
      }
      System.out.println("]");
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Original Array: [11.0 54.0 23.0 32.0 15.0 24.0 31.0 12.0 ]
Sorted Array: [11.0 15.0 23.0 32.0 54.0 24.0 31.0 12.0 ]
java_util_arrays.htm
广告