排序算法之—珠排序
具体的BeadSort的过程见:https://www.cnblogs.com/kkun/archive/2011/11/23/2260301.html具体的代码实现:// C++ program to implement gravity/bead sort#include <iostream>#include <cstring>using namespace ...
·
具体的BeadSort的过程见:https://www.cnblogs.com/kkun/archive/2011/11/23/2260301.html
具体的代码实现:
// C++ program to implement gravity/bead sort
#include <iostream>
#include <cstring>
using namespace std;
#define BEAD(i, j) beads[i * max + j]
/*
3 :1 1 1 3: 1 1 1 1 1
5 :1 1 1 1 1 ==> 5: 1 1 1
1 :1 1: 1
*/
void beadSort(int *a, int len)
{
// Find the maximum element
int max = a[0];
for (int i = 1; i < len; i++)
if (a[i] > max)
max = a[i];
// allocating memory
unsigned char beads[max*len];
memset(beads, 0, sizeof(beads));
// mark the beads
for (int i = 0; i < len; i++)
for (int j = 0; j < a[i]; j++)
BEAD(i, j) = 1;
for (int j = 0; j < max; j++)
{
// count how many beads are on each col
int sum = 0;
for (int i = 0; i < len; i++)
{
sum += BEAD(i, j);
BEAD(i, j) = 0;
}
// Move beads up
for (int i = len - sum; i < len; i++)
BEAD(i, j) = 1;
}
// Put sorted values in array using beads
for (int i = 0; i < len; i++)
{
int j;
for (j = 0; j < max && BEAD(i, j); j++);
a[i] = j;
}
}
void show(int *a, int len)
{
int i;
for (i = 0; i < len; i++)
cout << a[i] << "\n";
}
// driver function to test the algorithm
int main()
{
int len;
cout << "\nEnter the number of elements : ";
cin >> len;
int arr[len];
cout << "\nEnter the unsorted elements : ";
for (int i = 0; i < len; ++i)
{
cout << "\n";
cin >> arr[i];
}
beadSort(arr, len);
cout << "Sorted array\n";
show(arr, len);
return 0;
}
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐



所有评论(0)