快速排序

快速排序算法也是基于分治策略的。首先把原数组分解成两个子数组(可能空)A[p,q-1]和A[q+1,r];其中A[p,q-1]里边的元素都小于等于A[q],A[q+1]里边的元素都大于A[q];下标q也在这个分隔中进行计算。
然后,通过递归调用快速排序,对子数组A[p,q-1]和A[q+1,r]进行排序。
最后合并两个子数组的排序结果,因为两个子数组是就地排序的,将他们的合并不需要操作,整个数组A[p,…r]已排序。

#include <iostream>
#include <stdlib.h>
#include <time.h>

using namespace std;
void Swap(int* A, int lIndex, int rIndex);
void QuickSort(int *A, int startIndex, int endIndex);
int Partition(int * A, int startIndex, int endIndex);
int RandomizedPartition(int*A, int startIndex, int endIndex);

int main ()
{
	int arr[] = {3,1,5,2,4,99,8,7};
	int len = sizeof(arr)/sizeof(arr[0]);
	QuickSort(arr, 0, len-1);
	for (int i = 0; i < len; ++i)
	{
		cout << arr[i] << "\t";
	}
	cout << endl;
	return 0;
}

void QuickSort(int *A, int startIndex, int endIndex)
{
	if (startIndex < endIndex)
	{
		// 末尾分离
		//int partitionIndex = Partition(A, startIndex, endIndex);

		//随机分离
		int partitionIndex = RandomizedPartition(A, startIndex, endIndex);
		QuickSort(A,startIndex, partitionIndex-1);
		QuickSort(A, partitionIndex+1, endIndex);
	}
}

int Partition(int * A, int startIndex, int endIndex)
{
	int key = A[endIndex];
	int recursiveIndex = startIndex-1;
	for (int i = startIndex; i < endIndex; ++i)
	{
		if (A[i] <= key)
		{
			recursiveIndex += 1;
			Swap(A,recursiveIndex,i);
		}
	}
	Swap(A, recursiveIndex+1, endIndex);
	return recursiveIndex+1;
}

int RandomizedPartition(int*A, int startIndex, int endIndex)
{
	int i = (rand() % (endIndex - startIndex + 1)) + startIndex;
	Swap(A,i,endIndex);
	return Partition(A,startIndex, endIndex);
}

void Swap(int* A, int lIndex, int rIndex)
{
	int tmp = A[lIndex];
	A[lIndex] = A[rIndex];
	A[rIndex] = tmp;
}

方法2:默认取当前数组的第一个元素作为键值,然后从后向前找一个比这个元素小的值并记录索引为high,并替换;然后从前往后找一个比这个元素大的值记录索引为low,并替换;…直到low == high,一趟结束,此刻键值左边的元素比其小,键值右边的元素比其大。然后多左右两部分元素重复此过程

void QuickSort (int* pArr, int low, int high)
{
	if (pArr == NULL || low >= high)
	{
	return;
	}
	int i = low, j = high;
	int key = pArr[i];

	while (i < j)
	{
		//从后向前找一个比它小的
		while (pArr[j] >= key && i < j)
		{
			--j;
		}

		if (i < j)
		{
			pArr[i] = pArr[j];
		}

		//从前向后,找一个比它大的
		while (pArr[i] <= key && i < j)
		{
			++i;
		}

		if (i < j)
		{
			pArr[j] = pArr[i];
		}
	}
	pArr[i] = key;
	QuickSort (pArr, low, i-1);
	QuickSort (pArr, i+1, high);
}

代码三,尾哨兵

void Swap(int arr[], int i, int j)
{
	int tmp = arr[j];
	arr[j] = arr[i];
	arr[i] = tmp;
}

int Partition(int arr[], int beginIndex, int endIndex)
{
	int pivot = arr[endIndex];
	int j = beginIndex;
	for (int i = beginIndex; i < endIndex; ++i)
	{
		if (arr[i] < pivot)
		{
			Swap(arr, i, j);
			++j;
		}
	}
	Swap(arr, j, endIndex);
	return j;
}

void QuickSort(int arr[], int beginIndex, int endIndex)
{
	if (beginIndex >= endIndex)
	{
		return;
	}

	int p = Partition(arr, beginIndex, endIndex);

	QuickSort(arr, beginIndex, p - 1);
	QuickSort(arr, p + 1, endIndex);
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值