剑指offer-基础练习-快速排序-排序

Posted buaazhhx

tags:

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

/*
题目:快速排序
*/
/*
思路:将一个数组分为两份,左边的数字小于index,右边的数字大于index,递归划分后形成一个排序后的数组。
*/
void QuickSort(int data[],int length,int start,int end){
	if(start == end) return;
	int index = Partition(data,length,start,end);
	if(index > start){
		QuickSort(data,length,start,index-1);
	}
	if(index < end){
		QuickSort(data,length,index+1,end);
	}
}

int Partition(int data[],int length,int start,int end){
	if(data == null || length < 0 || start < 0 || end >= length){
		throw new std::exception("invalid Parameters");
	}
	
	int index = RandomInRange(start,end);
	Swap(&data[index],&data[end]);
	
	int small = start-1;
	for(int index = start; index < end; index++){
		if(data[index] < data[end]){
			small++;
			if(small != index){
				Swap(&data[small],&data[index]);
			}
		}
	}
	
	small++;
	Swap(&data[small],&data[end]);
	return small;
}
	

   

以上是关于剑指offer-基础练习-快速排序-排序的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode810. 黑板异或游戏/455. 分发饼干/剑指Offer 53 - I. 在排序数组中查找数字 I/53 - II. 0~n-1中缺失的数字/54. 二叉搜索树的第k大节点(代码片段

剑指offer:最小的K个数

剑指 Offer 53 - I. 在排序数组中查找数字 I / 剑指 Offer 42. 连续子数组的最大和(线段树基础)/152. 乘积最大子数组 / 面试题 10.02. 变位词组

剑指offer刷题排序算法

《剑指Offer——数字在排序数组中出现的次数》代码

剑指offer(二十七)之数字在排序数组中出现的次数