当前位置:   article > 正文

C++实现排序算法之计数排序_计数排序 cnt[i+1] += cnt[i]

计数排序 cnt[i+1] += cnt[i]

C++实现排序算法之计数排序

B站该视频理解比较好,讲的比较详细(标题讲的是桶排序,但最本质是计数排序)

菜鸟教程讲解的计数排序

#include <iostream>
#include <algorithm>
#include <cmath>

using namespace std;

void sort(int arr[], int len)
{
	int arrTemp[34] = { 0 };	//这里的数组大小取值,是等于原数组中最大值+1
	int arrTempLen = sizeof(arrTemp) / sizeof(int);

	for (int i = 0; i < len; i++)	//分别将原数组中的数值,放到对应索引的桶元素中,并开始进行计数
	{
		arrTemp[arr[i]]++;
	}

	for (int i = 0; i < arrTempLen; i++)
	{
		for (int j = 1; j <= arrTemp[i]; j++)
		{
			cout << i << " ";
		}
	}
	cout << endl;
}

void main()
{
	cout << endl;

	int arr[] = { 7, 4, 3, 2, 7, 10, 33, 2 };
	int len = sizeof(arr) / sizeof(int);

	cout << "排序后结果:" << endl;
	sort(arr, len);

	cout << endl;
	system("pause");
}

  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/空白诗007/article/detail/913065
推荐阅读
相关标签
  

闽ICP备14008679号