dict[num] = malloc(INIT);
assert(dict != NULL);
其中dict是char**
,INIT是10 [在崩溃时,dict **有80个内存重新分配给它,这应该足够大约20个字符串],在崩溃期间num为15
我对malloc有一个奇怪的情况
malloc(25)
=整个函数运行良好
malloc(17-24)
=断言错误 - 第2行
malloc(anything <=16)
=第1行崩溃
如果有帮助,dict[num]
应该包含2个字符,一个字母(或换行符),一个数字和一个空字节。 dict[15]
恰好是'\ n0'。
为什么会这样?我以为你只需要分配与字符一样多的内存。
对于记录,我还有一个memset(dict[num],'\0',INIT)
行,它出现在malloc +断言行之后。
EDIT =这是整个功能 - 它应该是LZ78压缩器/编码器
char *factory(char *input,int max){
int j,k,match,subtractor=0;
char *x = malloc(INIT);
char **dict = malloc(10*sizeof(dict[0]));
int dict_size = INIT;
assert ( dict != NULL );
char *temp = malloc(INIT);
int temp_size = INIT;
assert ( temp != NULL );
char *factors = malloc(INIT);
assert ( factors != NULL );
char *tempstring = malloc(INIT);
int tempstr_size = INIT;
assert ( tempstring != NULL );
int dlen = 1;
int dmax = 1;
factor_t *factorstr = malloc(INIT);
int break2 = 0;
memset(dict,'\0',INIT);
dict[0] = "";
x = input;
char unmatched[2];
unmatched[1] = '\0';
while(strlen(x)){
match = 0;
memset(temp,'\0',temp_size);
if (dlen>INIT){
temp_size = temp_size + dlen;
temp = realloc( temp, temp_size );
assert( temp != NULL );
}
printf("DMAX = %d\n",dmax);
if (dmax==dict_size){
dict_size *= 2;
dict = realloc(dict, dict_size*sizeof(*dict));
assert(dict != NULL);
}
for(j=0;j<dlen;j++){
if (dlen > strlen(x)){
dlen = strlen(x) - 1;
printf("\nRunning out of space! DLEN = %d\n",dlen);
}
memset(temp,'\0',temp_size);
strncpy(temp, &x[0], dlen-j);
for(k=0;k<dmax;k++){
if (strcmp(temp,dict[k])==0){
if ((strlen(temp)+1)>(tempstr_size)){
tempstr_size += strlen(temp) + 1;
tempstring = realloc( tempstring , tempstr_size);
assert( tempstring != NULL );
}
unmatched[0] = x[dlen-j];
memset(tempstring, '\0', tempstr_size);
strcat(tempstring,temp);
strcat(tempstring,unmatched);
dict[dmax] = malloc(strlen(tempstring)+100);
assert ( dict[dmax] != NULL ) ;
strcpy(dict[dmax], tempstring);
dmax++;
match = 1;
subtractor = dlen-j;
if (!j){
dlen++;
}
break2 = 1;
break;
}
}
if (break2){
break2=0;
break;
}
}
if (!match){
unmatched[0] = x[0];
factorstr[dmax].c = unmatched[0];
factorstr[dmax].k = 0;
dict[dmax] = malloc(INIT);
assert ( dict[dmax] != NULL );
memset(dict[dmax],'\0',INIT);
strcpy(dict[dmax],unmatched);
printf("dict dmax = %s\n",dict[dmax]);
dmax++;
subtractor = 1;
}
x = x + subtractor;
}
return 0;
}
答案 0 :(得分:2)
memset(dict,'\0',INIT);
这是一个错误,没有任何意义。 dict
是指向指针数组的指针。它不是字符串,并且没有大小INIT
。