鱼C论坛

 找回密码
 立即注册
查看: 4061|回复: 5

非常简单的小白错误求解

[复制链接]
发表于 2021-1-30 23:50:56 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
错误信息是什么意思?怎么改?
  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(struct  list));
      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)) ===|
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-1-31 07:41:31 From FishC Mobile | 显示全部楼层
这代码缺了不少,这种代码你研究它干嘛
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-1-31 09:56:25 | 显示全部楼层
那我把整个代码贴上来吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-1-31 10:26:12 | 显示全部楼层
看提示是说形式化错误
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-1-31 11:03:12 | 显示全部楼层
list 定义出错了吧,你那块应该是一个节点的,不是链表的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 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(struct  list));
      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链表中。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-11 02:30

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表