你们这些代码帮助了我很多。让我先说我不太了解C并且我很努力地做到这一点。
这是该计划应该做的事情:
1)创建一个长度为1000万的随机数列表 2)使用shell排序函数对随机数列表进行排序(仍然无法正常工作......我认为它是如何将指针传递给函数) 3)列出一百万个名单
4)在录制时间内重复多达1亿(由于某种原因,时间显示为0.0000000)
我只是试图测试这个shell排序程序与内置于标准库中的快速排序。
我已经尝试了有没有指针......注释掉的部分应该在它完成时起作用。它只会让事情变得更加大声笑
请帮助我,你们到目前为止一直都很棒......
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void shellSort(int *A, int n);
void checkSort(int *A, int n);
int main(){
/*Initialize Random Array*/
int unsorted_list[10000000];
int *ptr = &unsorted_list[0];
int random_number;
int i;
srand ( time(NULL) );
for(i=0; i<10000000; i++){
random_number = rand();
unsorted_list[i] = random_number % 10000000;
}
//Do C Shell Sort
double shell_results[10][2];
double clock_diff;
int j=10000000;
clock_t t0, t1;
int k;
for(i=0;i<10;i++){
/*Sort the list using shellSort and take the time difference*/
t0 = clock();
shellSort(ptr, j);
t1= clock();
/*Take difference in time*/
clock_diff = (t1 - t0)/CLOCKS_PER_SEC;
/*Add time and list length to the results array*/
shell_results[i][0] = (double)j;
shell_results[i][1] = clock_diff;
/*Check to make sure the array has been sorted*/
checkSort(ptr, j);
/*Re-initialize a longer array*/
//j+=1000000;
//for(k=0; k<j; k++){
// random_number = rand();
// unsorted_list[k] = random_number % 1000000;
//}
printf("%d",(int)shell_results[i][0]);
printf(" ");
printf("%f",shell_results[i][1]);
printf("\n");
}
return 0;
}
void shellSort(int *A, int n){
int gap , i , j , temp;
for (gap = n/2; gap>0; gap /=2)
for (i=gap; i<n; i++)
for(j = i-gap; j>=0 && A[j] > A[j+gap]; j-=gap){
temp = A[j];
A[j] = A[j + gap];
A[j + gap] = temp;
}
}
void checkSort(int *A, int n){
int i;
for(i=0;i<n;i++){
if(A[i]>A[i+1]){
printf("Error in sorting \n");
break;
}
}
}
答案 0 :(得分:3)
您可能没有10兆字节的堆栈空间。使该数组成为全局数据,使用static
声明它,或使用malloc()
动态分配它。如果您选择后者,请不要忘记free()
。
稍后,当您需要使用100,000,000个元素数组时,请确保为其使用新的分配!
答案 1 :(得分:0)
好吧,你不可能在堆栈上有足够的空间。使用malloc()将其从堆中分配出来。记得事后释放()。