- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试使用数组实现合并排序。我的代码正在跳入循环而不是停止。我需要使用 Ctrll+Z 来停止我的程序。基本上我正在从文件中读取并将该数组传递给合并排序函数然后我再次写入文件。写入文件后我计算编程时间并显示它。请检查我下面的代码。谢谢。
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
clock_t start=clock();
void mergesort(int *,int,int);
void merge(int *,int,int,int);
void writesortedrraytofile(int *,int);
static char *opfile=(char *)"output.txt";
int main(int argc,char* argv[])
{
FILE *fp;
char line[80];
int array[1000000];
int i=0,counter;
int choice;
printf("The command line arguments are:\n");
printf("%d %s %s %s\n",argc,argv[0],argv[1],argv[2]);
if(argc==3 && strcmp(argv[0],"./sorting")==0 && strcmp(argv[1],"input1.txt")==0 && strcmp(argv[2],"output.txt")==0)
{
printf("The command line arguments are correct.\n");
}
else
{
printf("The command line arguments are wrong.I am exiting.\n");
exit (0);
}
fp=fopen(argv[1],"r");
while(fgets(line,80,fp) !=NULL)
{
sscanf(line,"%d",&array[i]);
i++;
}
counter=i;
fclose(fp);
mergesort(array,0,counter);
}
return 0;
}
void mergesort(int *temp,int begin,int end)
{
int mid=0;
if(begin<end)
{
mid=(begin+end)/2;
mergesort(temp,begin,mid);
mergesort(temp,mid+1,end);
}
merge(temp,begin,mid,end);
}
void merge(int *temp,int low,int mid,int high)
{
int i,k;
int *tmp = (int *) malloc((high - low +1)* sizeof(int));
int begin1 = low;
int end1 = mid;
int begin2= mid +1;
int end2 = high;
for ( k = 0; begin1 <= end1 && begin2 <= end2; k++)
if (temp[begin1] < temp[begin2])
tmp[k] = temp[begin1 ++];
else
tmp[k] = temp[begin2 ++];
while (begin1 <= end1)
tmp[k++] = temp[begin1 ++];
while (begin2 <= end2)
tmp[k++] = temp[begin2 ++];
for ( i =0;i < high -low +1; i ++)
temp[low +i] = tmp[i];
free(tmp);
writesortedrraytofile(tmp,high-low+1);
return;
}
void writesortedrraytofile(int *ssarray,int len)
{
FILE *fp;
fp=fopen(opfile,"w");
for(int i=0;i<len;i++)
fprintf(fp,"%d\n",ssarray[i]);
fclose(fp);
printf("The output file is generated.Please check it inside the directory.\n");
printf("Time elapsed: %f\n", ((double)clock() - start) / CLOCKS_PER_SEC);
return;
}
最佳答案
我没有亲自尝试代码,但是使用这么大的数组作为局部变量听起来不是一个好主意。读入文件时也不进行任何边界检查。这可能会破坏您的堆栈并导致不可预知的结果。
更好的解决方案可能是:
#define MAX_COUNT 1000000
int* array = (int*)malloc(MAX_COUNT * sizeof(int));
和
while((fgets(line,80,fp) !=NULL) && (i < MAX_COUNT))
关于c - 合并排序不断循环并进入段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12225404/
如果这不是一个错误,那就是另一个错误。如果不是那样的话,那就是别的东西了。我觉得我的项目已经改变了很多,现在只是试图解决代码签名问题,结果一切都搞砸了。我严格按照说明进行操作,但出现错误,例如当前的“
我不确定是否有一些我不知道的内置变量或规则,或者 make 是否有问题,或者我只是疯了。 对于我的一个项目,我有一个如下的 makefile: CC=g++ CFLAGS=-O3 `libpng-co
我有大约 10 个 div,它们必须不断翻转,每个 div 延迟 3 秒 这个 codrops 链接的最后一个效果是我正在寻找的,但无需单击 div http://tympanus.net/Devel
我如何使用 jQuery 持续运行 PHP 脚本并每秒获取响应,以及将鼠标上的少量数据发送到同一脚本? 我真的必须添加一些随机扩展才能让这么简单的计时器工作吗? 最佳答案 To iterate is
JBoss 4.x EJB 3.0 我见过如下代码(大大简化): @Stateless @TransactionAttribute(TransactionAttributeType.NOT_SUPPO
使用 PHPStorm,我试图忽略每次尝试进行 git 提交时 pop 的 workspace.xml。 我的 .gitignore 看起来像: /.idea/ .idea/workspace.xml
我是一名优秀的程序员,十分优秀!