#include<stdio.h>
#include<stdlib.h>
#include<math.h>
struct Node{
int data;
struct Node *next;
};
void baseSort(int a[],int n,int m,int D){
struct Node **head;
head=(struct Node **)malloc(sizeof(struct Node *)*m);
for(int i=0;i<m;i++){/*给头节点分配空间*/
head[i]=(struct Node *)malloc(sizeof(struct Node));
head[i]->next=NULL;
}
for(int i=0;i<D;i++){
for(int j=0;j<n;j++){
int k=i,temp=a[j];
while(k){/*判断是第几趟,根据趟数求得对应位置下标的值 */
temp/=10;/*比如第二趟的某数的对应下标为该数除以一次10,再对10求余*/
k--;
}
int index=temp%10;
struct Node *p=head[index],*q;/*找到对应下标的头节点*/
while(p->next!=NULL){/*然后利用尾插法将该数插入链表*/
p=p->next;
}
q=(struct Node *)malloc(sizeof(struct Node));
q->data=a[j];
q->next=p->next;
p->next=q;
}
int re=0;
for(int j=0;j<m;j++){
struct Node *p=head[j];
while(p->next!=NULL){
p=p->next;
a[re++]=p->data;/*顺序回收链表中的数*/
}
head[j]->next=NULL;/*将头节点恢复初始状态,以便下一趟使用*/
}
}
}
int main(){
int n=10;/*待排序数个数为10*/
int a[n]={64,8,216,512,27,728,0,1,343,125};
int m=10;/*此案例基数设为10*/
int range=999;/*所有数的范围为0到999*/
int D=log10(range)+1;/*求趟数,用范围对基数取对数(向上取整)*/
baseSort(a,n,m,D);
printf("基数排序结果:");
for(int i=0;i<n;i++){
printf(" %d",a[i]);
}
return 0;
}