当前位置:   article > 正文

C++用快速排序法对一组数据进行从小到大排列_c++一维数组排序从小到大

c++一维数组排序从小到大

快速排序法:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另一部分的所有数据要小,然后再按此方法对这两部分数据分别进行快速排序(此过程可以用到函数递归的方法)。

#include <iostream>
#include <time.h>//引入头文件
using namespace std;

void srandData(int *, int );//用随机数初始化数组的函数
void sort(int *, int ,int );//快速排序法实现函数
void display(int *, int );//在屏幕上输出函数
int main()
{
	const int N = 10;
	int arr[N];

	srandData(arr, N);
	sort(arr, 0, N - 1);
	display(arr, N);

    return 0;
}
void srandData(int *a, int n)
{
    srand(time(NULL));
	
	for (int i = 0; i < n; i++)
	{
		a[i] = rand() % 50;//取50以下的数字
		cout << a[i] << " ";
	}
	
	cout << endl;
}
void sort(int *a, int start, int end)
{
	if(start >= end)
	{
		return ;
	}
    int i = start;
    int j = end;
    int key = a[i];//设置基准位
	while(i < j)
	{
		while(i < j && a[j] >= key)
		{
			j--;
		}
		a[i] = a[j];
		while(i < j && a[i] <= key)
		{
			i++;

		}
		a[j] = a[i];
	}
	a[i] = key;
	sort(a, start, i - 1);//此处用到函数递归的方法
	sort(a, i + 1, end);
}
void display(int *a, int n)
{
    for(int i = 0; i < n; i++)
    {
        cout << a[i] << " ";
    }
    cout << endl;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/764222
推荐阅读
相关标签
  

闽ICP备14008679号