gpt4 book ai didi

c - 总线错误: 10. 编译时没有错误

转载 作者:行者123 更新时间:2023-11-30 18:12:27 25 4
gpt4 key购买 nike

所以基本上,当我使用 GCC 编译器编译代码时,我没有收到任何错误或警告,但是当我输入第一条数据时,它会显示:

Bus error: 10.

我不确定我做错了什么。我认为问题来自于 void anagramGrouping (最后一个函数)。我还包含了其余的代码以帮助遵循逻辑。

#include <stdio.h>
#include <string.h>

#define Row 2
#define col 20

int wordCount = 0;
int groupCount = 0;
char wordList[Row][col];
char group[Row][col];

// this is where prototypes go
void sortword(char word[col]);
void anagramGrouping(char word[col], char copy[col]);
void resetGroup();

int main() {
int i; // used in for loop to 'get' the strings
char word[col];

resetGroup();

for (i = 0; i < Row; i++) {
scanf("%s", word);
sortword(word);
wordCount++;
}
}

void resetGroup() {
int i;

for (i = 0; i < Row; i++)
strcpy(group[i], " ");
}

void sortword(char word[col]) {
int i = 0;
char temp;
char copy[col]; // used to store a copy of the original word

strcpy(copy, word);

while (word[i] != '\0') {
int j = i + 1;

while (word[j] != '\0') {
if (word[j] < word[i]) {
temp = word[i];
word[i] = word[j];
word[j] = temp;
}
j++;
}
i++;
}
anagramGrouping(word,copy);
}

void anagramGrouping(char word[col], char copy[col]) {
int n;

if (wordCount == 0) {
strcpy(group[0], copy);
}

for (n = 0; n <= groupCount; n++) {
if (strcmp(group[n], word) == 0) {
strcpy(group[n], copy);
} else {
groupCount++;
strcpy(group[groupCount], copy);
}
}
}

最佳答案

对于初学者,更改所有

sortword (char word[col])

sortword (char *word)

以及所有

anagramGrouping (char word[col], char copy[col]) 

anagramGrouping (char *word, char *copy)

当您通过char copy[col]时,您正在传递 character array ,当作为函数参数传递时,它会转换为指针。 (您会听到短语“衰减为指针”,这并不完全正确,但经常用于表示同一件事)。这不是导致 bus error 的问题,但会让你的代码更具可读性。

接下来是您的bus error通常是由于误用了指针值,当获取该值时,该值超出了程序允许的内存范围,通常在系统区域中,导致 bus error 。查看您的代码,很难判断众多问题中的哪一个可能是确切原因。然而,可能的罪魁祸首是:

for(n=0; n <= groupCount; n++)
{
if ( strcmp(group[n],word) ==0 )
{
strcpy(group[n],copy);
}
else
{
groupCount++;
strcpy(group[groupCount],copy);
}
}

通过调试器运行,您很快就会发现groupCount增长远远超过 1导致strcpy(group[groupCount],copy)写在 char group[Row][col]; 的末尾之外。其中允许的行值限制为 0-1正如你#define Row 2 .

要将副本限制在允许的范围内,请将循环条件更改为:

for (n = 0; n < Row; n++) {

对代码的进一步清理可能如下所示:

#include<stdio.h>
#include<string.h>

#define Row 2
#define col 20

int wordCount = 0;
int groupCount = 0;
char wordList[Row][col];
char group[Row][col];

void sortword (char *word);
void anagramGrouping (char *word, char *copy);
void resetGroup();

int main (void) {

int i;
char word[col] = "";

resetGroup();

for (i = 0; i < Row; i++)
{
scanf ("%s", word);
sortword (word);
wordCount++;
}

return 0; /* main is a function of type 'int' and returns a value */
}

void resetGroup()
{
int i;

for (i = 0; i < Row; i++)
*group[i] = 0;
}

void sortword (char *word)
{
int i = 0;
char temp;
char copy[col] = "";

strcpy (copy, word);

while (word[i]) {
int j = i + 1;
while (word[j]) {
if(word[j] < word[i]) {
temp = word[i];
word[i] = word[j];
word[j] = temp;
}
j++;
}
i++;
}
anagramGrouping (word,copy);
}

void anagramGrouping (char *word, char *copy)
{
int n;

if (!wordCount)
strcpy (group[0],copy);

for (n = 0; n < Row; n++) {
if (strcmp (group[n], word) == 0)
strcpy(group[n],copy);
else {
groupCount++;
strcpy (group [groupCount],copy);
}
}
}

如果您有任何疑问,请告诉我。

关于c - 总线错误: 10. 编译时没有错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35978576/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com