基数排序代码

Posted XJX

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基数排序代码相关的知识,希望对你有一定的参考价值。

思路参考《算法导论》P110

另外,这位老哥讲的很不错:http://www.cnblogs.com/kkun/archive/2011/11/23/2260275.html

-------------------------------------------------------------------代码-------------------------------------------------------------------

 1 // 基数排序.cpp: 定义控制台应用程序的入口点。
 2 //
 3 
 4 #include "stdafx.h"
 5 #include <iostream>
 6 #include <vector>
 7 #include <math.h>
 8 
 9 using namespace std;
10 
11 int RADIX(vector<int> &A,int d)//出于简单考虑,我们假设A中所有的数都是d位
12 {
13     vector<vector<int>> bucket(10);//用二维数组也行
14     int temp;
15     for (int i = 0; i < d; i++)
16     {
17         for (int j = 0; j < A.size(); j++)
18         {
19             temp = (int)(A[j] / pow(10, i)) % 10;
20             bucket[temp].push_back(A[j]);
21         }
22         int ptr = 0;
23         for (int i = 0; i < 10; i++)
24         {
25             for (int j = 0; j < bucket[i].size(); j++)
26             {
27                 A[ptr++] = bucket[i][j];
28             }
29             bucket[i].erase(bucket[i].begin(), bucket[i].end());
30         }
31     }
32     return 0;
33 }
34 
35 int main()
36 {
37     vector<int> A = {329,457,657,839,436,720,355};
38     for (auto c : A)
39         cout << c << ends;
40     cout << endl;
41 
42     RADIX(A,3);
43     for (auto c : A)
44         cout << c << ends;
45     cout << endl;
46     return 0;
47 }

运行结果如下:

 

以上是关于基数排序代码的主要内容,如果未能解决你的问题,请参考以下文章

数据结构-排序之基数排序(使用java代码实现)

算法-java代码实现基数排序

改变基数排序基础?

LSD基数排序c++代码

基数排序:基数排序中的“组”是啥意思?

这个基数排序代码中的最后一个“for”循环是做啥的?