我正在尝试编译我在C中编写的程序,但是在运行程序时无法摆脱“总线错误”。我遇到了其他线程提到'字符串文字'和内存问题,但我认为是时候我要求重新审视我的代码了。
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
计算单词:
int count(char *str)
{
int i = 0;
int k = 0;
while (str[i])
{
if (str[i] != ' ')
{
while (str[i] != ' ')
i++;
k++;
}
else
i++;
}
return (k);
}
提取单词:
void extract(char *src, char **dest, int i, int k)
{
char *tabw;
int j = 0;
while (src[i + j] != ' ')
j++;
tabw = (char*)malloc(sizeof(char) * j + 1);
j = 0;
while (src[i + j] != ' ')
{
tabw[j] = src[i + j];
j++;
}
tabw[j] = '\0';
dest[k] = &tabw[0];
return;
}
将字符串拆分为单词:
char **split(char *str)
{
int i = 0;
int k = 0;
char **dest;
dest = (char**)malloc(sizeof(*dest) * count(str) + 1);
while (str[i] != '\0')
{
while (str[i] == ' ')
i++;
if (str[i] != ' ')
extract(str, dest, i, k++);
while (str[i] != ' ')
i++;
}
dest[k] = 0;
return (dest);
}
印刷:
void ft_putchar(char c)
{
write(1, &c, 1);
}
void print(char **tab)
{
int i = 0;
int j;
while (tab[i])
{
j = 0;
while (tab[i][j])
{
ft_putchar(tab[i][j]);
j++;
}
ft_putchar('\n');
i++;
}
}
int main()
{
print(split(" okay blue over"));
}
你们有什么想法吗?谢谢!
答案 0 :(得分:2)
while (str[i] != ' ')
中的 count
超出了字符串结尾。我发现你在多个地方犯了这个错误(extract
和split
):你假设你会看到一个空格,但这不一定是真的。例如,您在main
中传递的字符串的最后一个单词后面没有空格。
使用:while (str[i] != ' ' && str[i] != 0 )