我包含了所有代码,因此,如果您有任何意见,我想学习!
该函数正在接收一个字符串并创建一个字符串指针数组;每个字符串都包含以所选字母开头的单词。
我的问题是函数free_string()
上出现错误!
我知道这是释放矩阵的方法,所以也许在此之前还出了什么问题?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
void main()
{
char str[SIZE],leteer,**string;
int size=0;
printf("please enter the string\n");
gets(str);
printf("please enter the letter\n");
scanf("%c",&leteer);
string=create_strings_from_letter(str, leteer, &size);
print_string(string,size);
free_string(string,size);
}
char ** create_strings_from_letter(char *str, char letter, int * size)
{
char **string_of_letters;
char *read = str,*write;
int count=0,i=0;
while (*read)//cheaking how much strings to allocate//
{
if (*read == tolower(letter)|| *read == toupper(letter))
{
(*size)++;
for (; *read && *read != ' '; read++);
}
for (; *read && *read != ' '; read++);
read++;
}
string_of_letters = (char**)malloc((*size)*sizeof(char*));
read = str;
while (*read)
{
for (; *read && *read != tolower(letter) && *read != toupper(letter);read++);
if (*read)
{
write = read;
for (; *read && *read != ' '; read++, count++);
string_of_letters[i] = (char*)malloc((count) * sizeof(char));
strncpy(string_of_letters[i], write,count);
string_of_letters[i][count] = '\0';
count = 0;
i++;
}
else
break;
}
return string_of_letters;
}
void free_string(char ** string, int size)
{
int i;
for (i = 0;i<size; i++)
free(string[i]);
free(string);
}
答案 0 :(得分:0)
从注释中,您似乎已经找到错误的根源,该错误正在写入超出范围的内存地址。因此,我想在评论中解决您的其他问题。
令他烦恼的是,他没有警告我有关超出阵列限制的原因,这是为什么?
这取决于您设置的编译器选项。一些编译器具有设置警告级别和优化级别的选项。如果执行此操作,则可以看到警告。
例如,在GCC的情况下,如果将警告级别选项设置为-Wall
(很多),并且将优化级别设置为-O2
(完全),则尝试时会收到警告写入越界内存地址。
警告将如下所示:
warning: array subscript is above array bounds [-Warray-bounds]