0

我需要分配一个字符串数组。长度为 100,每个单元格可以包含 100 个字符的字符串。

typedef char* (*Encryptor3)(char*, char);
char** encryptToString(char** input,int length,int first,Encryptor3 encryptor)
{
int i=0;
char** output=(char **)malloc(sizeof(char*)*length);
for(i=0;i<length;i++){
    output[i]=(char *)malloc(sizeof(char)*(100+1));
}
output[0]=encryptor(first,input[0]);
output[1]=encryptor(first,input[1]);

for(i=2; i<length ; i++)
{
    output[i]=encryptor(output[i-2],input[i]);
}
return output;
}

int main()
{
    char plain[] = {'p','l','a','i','n','t','e','x','t'};
    char** outputS = encryptToString(plain, 9, "test", idenString);
    int i;
    for(i=0; i<9; i++)
        printf("%s\n", outputS[i]);
    for(i=0; i<9; i++) //deallocating my array of strings
        free(outputS[i]);
    free(outputS);
    return 0;
}

“free(outputS[i]);”这一行 会使程序崩溃,我会收到一个普通错误,说“myp.exe 已停止工作”。

4

1 回答 1

1

代替

output[...]=encryptor(...);

做:

strcpy(output[...], encryptor(...));

这假设使用的缓冲区encryptor()是静态的。

还要确保返回的字符串encryptor()不大于分配给 引用的指针的字符串output,即 100 个字符,不包括尾随的零终止符。

于 2013-04-15T07:09:05.503 回答