C编程 - 打印时嵌套链接列表问题

时间:2018-03-05 20:08:52

标签: c

我正在为课堂写作,我遇到了一些问题。与大多数编程类一样,他们并不总是使用最佳实践来设置变量和代码,您必须使其工作。

以下是设置:

link.h

//just showing the struct setup
typedef struct listCDT *listADT;

link.c

//just showing the struct setup as all the other functions work
typedef struct point {
   listElementT x; 
   struct point *next;
} myDataT;

struct listCDT {
    myDataT *start;     // myDataT *header;
    myDataT *end;       // myDataT *footer;
};

driver.c

//main is truncated to just the problem area
void main()
{
     listADT X, Y;
     X = NewList(); 
     Y = NewList();

     list_print_values(Y, "Y");
}

void list_print_values(listADT a, char *name)
{
        while (a != NULL)
        {
        printf("%d   ", *((*a)->start)->x););
        a = (&a)->end;
    }
    printf("\n");

    return;
}

driver.c是我创建的唯一文件,我目前唯一的问题是打印结构。我收到以下错误:

>make
gcc  -c driver.c
driver.c: In function ‘list_print_values’:
driver.c:56:22: error: dereferencing pointer to incomplete type
   printf("%d   ", *((*a)->start)->x);
                      ^
driver.c:57:11: error: request for member ‘end’ in something not a structure or union
   a = (&a)->end;
           ^
make: *** [driver.o] Error 1

我已经尝试了一切我能想到的东西,我一定会想念一些简单的东西?有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

使用.->运算符访问结构成员。一个用于结构指针,另一个用于结构。 在您的情况下,您正在访问结构指针的成员,因为您正在使用->而不需要取消引用。

printf("%d   ", (a->start)->x);
    a = a->end;

假设listElement属于type int,因此格式说明符为%d