快速排序

Posted bigdata-stone

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快速排序相关的知识,希望对你有一定的参考价值。

package com.cisco.www.sort;

public class QuickSort
public static void quickSort(int[] arr,int L,int R)
int[] p = partition(arr,L,R);
quickSort(arr,L,p[0]-1);
quickSort(arr,p[1]+1,R);

public static int[] partition(int[] arr,int L,int R)
int less = L -1;
int more = R+1;
int cur= L;
while (cur<more)
if(arr[cur]<arr[R])
swap(arr,++less,cur++);
else if(arr[cur]>arr[R])
swap(arr,--more,L);
else
cur++;


swap(arr,more,R);
return new int[]less+1,more;


private static void swap(int[] arr, int i, int j)
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;

以上是关于快速排序的主要内容,如果未能解决你的问题,请参考以下文章

深度解析(十六)快速排序

快速排序

基于快速排序方法改成求第k大的数

简单介绍一下快速排序的思想?

用C语言编程实现快速排序算法

Python实现排序算法之快速排序