在赋值中,我需要能够从二维字符串数组中找到最后一个单词(每行/字符串的最后一个单词),这样我就可以应用一个密码。我试过这个:
space = strrchr((*array)[i], ' ');
if ((name = strstr((*array)[i], search)) != NULL) {
cipher = 1;
}
if (cipher && name > space) {
//Cipher code here
空间和搜索定义为:
char *space, *search;
* array是指向在main()中声明的二维数组的指针,我在不同的函数中将值加载到其中。
代码有效,但是在拉出第一行的最后一个单词后程序崩溃了。在调试时,我收到错误:Projekt中的0x009915B0处的未处理异常1.exe:0xC0000005:访问冲突读取位置0xCCCCCCCC。第一行中的单词被正确拉出,并且密码有效(我试图在每行之后打印它)。
我尝试使用Google搜索并在StackOverflow上查阅其他主题,但它对我没什么帮助。有人能指出我如何获得每一行的最后一个字的正确方向吗?
编辑:在这种情况下我使用的是Albam密码:
for (i = 0; i < lines; i++) {
space = strrchr((*array)[i], ' ');
if ((name = strstr((*array)[i], search)) != NULL) {
cipher = 1;
}
if (cipher && name > space) {
cipher = 1;
for (j = 0; j < strlen(*array[i]); j++) {
if ((*array)[i][j] < 'Z' && (*array)[i][j] > 'A' || (*array)[i][j] < 'z' && (*array)[i][j] > 'a') {
if (toupper((*array)[i][j]) > 'A' && toupper((*array)[i][j]) < 'N')
(*array)[i][j] = (*array)[i][j] + 13;
if (toupper((*array)[i][j]) > 'N' && toupper((*array)[i][j]) < 'Z')
(*array)[i][j] = (*array)[i][j] - 13;
}
}
}
}
答案 0 :(得分:1)
希望这有帮助
感兴趣的代码
for(i=0; i<rows; i++)
{
for(j=0; j<cols; j++)
{
lastWord = strrchr(array[i][j], ' ');
if (lastWord == NULL)
lastWord = array[i][j];
else
lastWord++;
printf("%s\n", lastWord);
lastWord = NULL;
}
}
完整代码
int i,j;
char *line = NULL;
int read, len;
char*** array;
char* lastWord;
int rows, cols;
FILE* fp;
fp = fopen("input.txt", "r");
if(fp != NULL)
{
// Read the number of rows and cols
line = NULL;
read = getline(&line, &len, fp);
sscanf(line, "%d,%d", &rows, &cols);
// allocate memory and read the input strings
array = (char***)malloc(sizeof(char**) * rows);
for(i=0; i<rows; i++)
{
array[i] = (char**)malloc(sizeof(char**) * cols);
}
for(i=0; i<rows; i++)
{
for(j=0; j<cols; j++)
{
read = getline(&line, &len, fp);
assert((read >= 0) && (read <= 1024) && (line != NULL));
array[i][j] = (char*)malloc(read+1);
strncpy(array[i][j], line, read-1);
}
}
if(line != NULL)
{
free(line);
line = NULL;
}
for(i=0; i<rows; i++)
{
for(j=0; j<cols; j++)
{
lastWord = strrchr(array[i][j], ' ');
if (lastWord == NULL)
lastWord = array[i][j];
else
lastWord++;
printf("%s\n", lastWord);
lastWord = NULL;
}
}
for(i=0; i<rows; i++)
for(j=0; j<cols; j++)
free(array[i][j]);
for(i=0; i<rows; i++)
free(array[i]);
free(array);
}
else
{
printf("Unable to open the file\n");
}
fclose(fp);
return 0;