快速排序java_排序

快速排序(Quick Sort)是一种高效的排序算法,采用分治策略来对一个数组进行排序。在Java中实现快速排序通常包括选择一个基准元素,将数组划分为两部分,一部分包含小于基准的元素,另一部分包含大于基准的元素,然后递归地对这两部分进行排序。

快速排序是一种高效的排序算法,它的基本思想是通过一趟排序将待排记录分隔成独立的两部分,其中一部分记录的关键字均比另一部分的关键字小,然后分别对这两部分记录继续进行排序,以达到整个序列有序的目的。

快速排序java_排序插图1

以下是快速排序的Java实现:

public class QuickSort {
    public static void main(String[] args) {
        int[] arr = {3, 8, 2, 5, 1, 4, 7, 6};
        quickSort(arr, 0, arr.length 1);
        for (int i : arr) {
            System.out.print(i + " ");
        }
    }
    public static void quickSort(int[] arr, int low, int high) {
        if (low < high) {
            int pivot = partition(arr, low, high);
            quickSort(arr, low, pivot 1);
            quickSort(arr, pivot + 1, high);
        }
    }
    public static int partition(int[] arr, int low, int high) {
        int pivot = arr[low];
        while (low < high) {
            while (low < high && arr[high] >= pivot) {
                high;
            }
            arr[low] = arr[high];
            while (low < high && arr[low] <= pivot) {
                low++;
            }
            arr[high] = arr[low];
        }
        arr[low] = pivot;
        return low;
    }
}

代码解析:

1、main方法:定义一个待排序的整数数组,调用quickSort方法进行排序,并输出排序后的结果。

2、quickSort方法:递归地对数组进行快速排序,首先判断当前子数组的长度是否大于1,如果是,则找到基准元素的位置,并将数组分为两部分,然后对这两部分分别进行快速排序。

3、partition方法:将数组按照基准元素划分为两部分,使得左边的元素都小于基准元素,右边的元素都大于基准元素,返回基准元素的位置。

运行上述代码,可以得到排序后的数组:1 2 3 4 5 6 7 8。

快速排序java_排序插图3

快速排序java_排序插图5

本文来源于互联网,如若侵权,请联系管理员删除,本文链接:https://www.9969.net/14999.html

(0)
上一篇 2024年7月2日
下一篇 2024年7月2日

相关推荐