我是靠谱客的博主 虚心香水,最近开发中收集的这篇文章主要介绍数据结构与算法-快速排序算法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

代码示例
package com.cwl.arithmetic;
/**
* @program: data-structure
* @description: 快速排序
* @author: ChenWenLong
* @create: 2019-11-15 10:32
**/
public class QuickSort {
/**
* 功能描述:
* 〈对指定数组进行分割〉
*
* @params : [a, p, r]
* @return : int
* @author : cwl
* @date : 2019/11/15 9:42
*/
private static int partitionInt(int a[],int p,int r){
int x = a[r-1];
int i = p - 1;
int temp;
for(int j=p;j<=r-1;j++){
if(a[j-1]<=x){
i++;
temp = a[j-1];
a[j-1] = a[i-1];
a[i-1] = temp;
}
}
temp = a[r-1];
a[r-1] = a[i];
a[i] = temp;
return i+1;
}
/**
* 功能描述:
* 〈快速排序方法〉
*
* @params : [a, p, r]
* @return : void
* @author : cwl
* @date : 2019/11/15 9:42
*/
public static void quickSortInt(int a[],int p,int r){
if(p < r){
int q = partitionInt(a, p, r);
quickSortInt(a, p, q-1);
quickSortInt(a, q+1, r);
}
}
}

最后

以上就是虚心香水为你收集整理的数据结构与算法-快速排序算法的全部内容,希望文章能够帮你解决数据结构与算法-快速排序算法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(68)

评论列表共有 0 条评论

立即
投稿
返回
顶部