我正在尝试对“随机”整数数组进行基数排序。radix_sort 函数给了我段错误错误。我检查了每个 for 循环,它们似乎都没有超出范围,所以我的假设是问题可能出在数组指针上,但我似乎无法在网络上找到任何有助于解决任何此类问题的源信息。使用带有 -std=c99 标志的 GCC 编译
#include <stdio.h>
#include <stdlib.h>
#define LEN 1000
#define BYTES 4
#define BINS 256
void create_lst();
void int_radix_sort();
void radix_sort(int);
long data[LEN];
long temp[LEN];
int main(int argc, char * * argv) {
create_lst();
int_radix_sort();
return 0;
}
void create_lst() {
for (int i = 0; i < LEN; i++) {
srand(rand());
data[i] = rand();
}
return;
}
void int_radix_sort() {
for (int i = 0; i < BYTES; i++) {
radix_sort(i);
}
return;
}
void radix_sort(int byte) {
long map[BINS], count[BINS];
long *src_p, *dst_p;
if((byte%2) == 0){
src_p = data;
dst_p = temp;
} else {
src_p = temp;
dst_p = data;
}
// Count
for(int i = 0; i < LEN; i++)
count[(src_p[i] >> (byte*8)) & (BINS-1)]++;
// Map
map[0]=0;
for(int j = 1; j < BINS; j++)
map[j] = count[j-1] + count[j-1];
// Move
for(int k = 0; k < LEN; k++)
dst_p[map[(src_p[k] >> (byte*8)) & (BINS-1)]++] = src_p[k];
return;
}
编辑:更多信息 - 当我通过调试器运行程序时,我发现问题出在最后一个循环上(使用 K 变量)