gpt4 book ai didi

c - 检查尝试时出错,我该如何解决?

转载 作者:太空宇宙 更新时间:2023-11-04 02:21:40 26 4
gpt4 key购买 nike

在家庭作业中,我的任务是为代码添加错误检查。我还有两个:一个我知道我需要编写错误检查的内容,但无法让它工作,另一个我还没有找到要检查的内容。

我已经尝试更改 read_edge 的返回类型以允许使用 return 0;在发现错误时结束函数,但这导致 g.edges 接收到错误的类型。我还尝试在测试“edge”结构上主要调用 read_edge 之前设置错误检查,但它对捕获错误没有影响。

typedef int vertex;

typedef struct {
vertex source;
vertex target;
float weight;
} edge;

typedef struct {
int n;
int m;
vertex* vertices;
edge* edges;
} graph;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
edge read_edge(FILE* file) {
edge e;
if (fscanf(file, "%d %d %f", &e.source, &e.target, &e.weight) != 3){
printf("Error: Expected an Integer and/or Float\n");
return 0;
}
fscanf(file, "%d %d %f", &e.source, &e.target, &e.weight);
return e;
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

这个位是调用 read_edge 的 main 部分:

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
graph g = create_graph(n, m);

for (int i = 0; i < m; i++) {
// missing error check
g.edges[i] = read_edge(file);
}

printf("%d %d\n", g.n, g.m);

return 0;
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

很明显,由于我试图返回 0,这将导致编译错误;在“边缘”的返回类型中,但我不确定如何允许这种情况发生。

最佳答案

更改函数,使它们返回 int,并将指向要填充的结构的指针作为参数。

此外,您不应该调用 fscanf() 两次。第二次调用将尝试从文件中读取下一个结构,而不是重新读取您在测试结果时读取的内容。

int read_edge(FILE* file, edge *e) {
if (fscanf(file, "%d %d %f", e->source, e->target, e->weight) != 3){
printf("Error: Expected two integers and float\n");
return 0;
}
return 1;
}

在调用者中,而不是

e = read_edge(f);

你使用类似的东西

int success = read_edge(f, &e);

所以另一个函数是:

for (int i = 0; i < m; i++) {
int success = read_edge(file, &g.edges[i]);
if (!success) {
break;
}
}

关于c - 检查尝试时出错,我该如何解决?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57015266/

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