yyyf 发表于 2021-1-30 23:50:56

非常简单的小白错误求解

错误信息是什么意思?怎么改?
int i=0,length;
    int n;
    printf("请输入链表的长度:\n");
    scanf("%d",&length);
    head = (struct list *)malloc(sizeof(struct list));
    L=head;
    printf("请依次输入链表的内容:\n");
    for(i=0;i<length;i++)
    {
      p = (struct list *)malloc(sizeof(structlist));
      scanf("%d",&p->data);
      p->next=NULL;
      head->next=p;
      p->next=NULL;
      head=p;
    }
||=== Build: Debug in Difference (compiler: GNU GCC Compiler) ===|
H:\C\数据结构习题\codeblocks\chapter2\2-1\Difference\main.c||In function 'main':|
H:\C\数据结构习题\codeblocks\chapter2\2-1\Difference\main.c|28|error: invalid application of 'sizeof' to incomplete type 'struct list'|
H:\C\数据结构习题\codeblocks\chapter2\2-1\Difference\main.c|33|error: invalid application of 'sizeof' to incomplete type 'struct list'|
H:\C\数据结构习题\codeblocks\chapter2\2-1\Difference\main.c|34|error: dereferencing pointer to incomplete type 'struct list'|
H:\C\数据结构习题\codeblocks\chapter2\2-1\Difference\main.c|43|error: invalid application of 'sizeof' to incomplete type 'struct list'|
H:\C\数据结构习题\codeblocks\chapter2\2-1\Difference\main.c|48|error: invalid application of 'sizeof' to incomplete type 'struct list'|
||=== Build failed: 5 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|

wp231957 发表于 2021-1-31 07:41:31

这代码缺了不少,这种代码你研究它干嘛

yyyf 发表于 2021-1-31 09:56:25

那我把整个代码贴上来吗?

瞎碰 发表于 2021-1-31 10:26:12

看提示是说形式化错误

sangemu 发表于 2021-1-31 11:03:12

list 定义出错了吧,你那块应该是一个节点的,不是链表的

yyyf 发表于 2021-1-31 16:21:29

#include <stdio.h>
#include <malloc.h>

typedef struct{
    int data;
    struct list *next;
}list;
//第一条链表
struct list *L=NULL;//头
struct list * head=NULL;//首
struct list * p=NULL;
//第二条链表
struct list *L1=NULL;//头
struct list *head1=NULL;//首
struct list *p1=NULL;
//代理链表
struct list *L2=NULL;
struct list *q=NULL;
struct list*pre=NULL;
struct list *u=NULL;

int main()
{
    int i=0,length;
    int n;
    printf("请输入链表的长度:\n");
    scanf("%d",&length);
    head = (struct list *)malloc(sizeof(struct list));
    L=head;
    printf("请依次输入链表的内容:\n");
    for(i=0;i<length;i++)
    {
      p = (struct list *)malloc(sizeof(structlist));
      scanf("%d",&p->data);
      p->next=NULL;
      head->next=p;
      p->next=NULL;
      head=p;
    }
    int i1=0,length1;
    printf("请输入链表的长度:\n");
    scanf("%d",&length1);
    head1 = (struct list *)malloc(sizeof(struct list));
    L1=head1;
    printf("请依次输入链表的内容:\n");
    for(i1=0;i<length1;i1++)
    {
      p1=(struct list*)malloc(sizeof(struct list));
      scanf("%d",&p1->data);
      p1->next=NULL;
      head1->next=p1;
      p1->next=NULL;
      head1=p1;
    }
    //L和L1的差集的结果存储于La中,n是结果集合中元素个数,调用时为0
    p=L->next;
    p1=L1->next;
    pre=L;   //pre为L中p所指结点的前驱结点的指针
    while(p&&p1)
    {
      if(p->data<p1->data) //A链表中当前指针后移
      {

          n++;
          pre=p;
          p=p->next;

      }

      else if(p->data>p1->data)
      {
            p1=p1->next;//B链表中当前结点指针后移
      }
      else
      {
            pre->next=p->next;
            u=p;
            free (u);
      }
    }

    return 0;
}
源码如上所示。已知两个链表A和B分别表示两个集合,其元素递增排列。求出A与B的交集,并存放在A链表中。
页: [1]
查看完整版本: 非常简单的小白错误求解