我正在尝试从文件中读取数据。该文件的每一行包含:string1 string2 float 例如:A1 A2 5.22 我试图在屏幕上printf链表的第一个元素的值,但每次我都会收到错误:
“program.c”文件中的- 错误:请求成员“权重”的东西不是结构或联合
printf("%f", data -> weight);
或 在“main.c”文件中 - 错误:解除引用指向不兼容类型的指针
printf("%f\n", data ->weight);
也许有人可以帮助我将成员数据输出到屏幕上。哪里可能是问题,我怎么能纠正它?因为我尝试阅读有关此主题的其他答案,尝试不同的变体,但没有为“数据”成员解决问题。
已编辑:我通过更改解决了以下问题:
typedef struct node * node;
至
typedef struct node node;
但是“main.c”的错误: 错误:取消引用指向不兼容类型的指针 仍然存在。也许有人有任何想法我怎么能纠正我的代码?
编辑代码:
的main.c
#include <stdio.h>
#include <stdlib.h>
#include "program.h"
int main(int argc, char *argv[] ){
if(argc != 3){return 0;}
node* data;
data = getData(argv ,&data);
printf("%f \n", data -> weight); //here second mentioned error appears
return 0;
}
program.h
#ifndef program_h
#define program_h
#include <stdio.h>
#include <stdlib.h>
#include "program.h"
typedef struct node node;
node* getData (char* argv[], node** data);
#endif
program.c
#include "program.h"
struct node
{
char* from;
char* to;
float weight;
struct node *next;
};
node* getData (char* argv[], node** data){
node* elem;
node* lastElem;
FILE *in=fopen(argv[1], "r");
if (in == NULL) {
fprintf(stderr, "Can't open input file !\n");
exit(1);
}
char* string1 = (char*)malloc(100*sizeof(char));
char* string2 = (char*)malloc(100*sizeof(char));;
float dataW; // dataWeigth
fscanf(in, "%s" ,string1);
fscanf(in, "%s" ,string2);
lastElem = malloc( sizeof(struct node));
lastElem -> next = NULL;
lastElem -> from = string1;
*data = lastElem;
printf("%f",(*data)->weight);
if(!feof(in)){
fscanf(in, "%f%*[^\n]" ,&dataW);
lastElem -> to = string2;
lastElem -> weight = dataW;
while (!feof(in))
{
fscanf(in, "%s" ,string1);
fscanf(in, "%s" ,string2);
fscanf(in, "%f%*[^\n]" ,&dataW);
elem = malloc( sizeof(struct node));
elem -> next = NULL;
elem -> from = string1;
elem -> to = string2;
elem -> weight = dataW;
lastElem -> next = elem;
lastElem = elem;
}
}
fclose(in);
return *data;
}
答案 0 :(得分:0)
嗯..我无法看到program.c链接到main.c或program.h中的任何地方
应该到那里执行结构。 。 。 和.. 不,您将“数据”定义为结构。 因为它应该是
struct node* data;
或
node* data;
调用函数中的任何东西都不能使那个东西成为一个结构。
答案 1 :(得分:0)
更改
struct node
{
char* from;
char* to;
float weight;
struct node *next;
};
到
typedef struct
{
char* from;
char* to;
float weight;
struct node *next;
} node;
将其移至program.h
,并且本身不包含program.h
- 这没有任何意义。相反,请将其包含在main.c
和program.c
中。