鱼C论坛

 找回密码
 立即注册
查看: 916|回复: 3

[已解决]C语言链表 删除重复元素

[复制链接]
发表于 2020-4-3 15:29:20 | 显示全部楼层 |阅读模式

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

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

x
struct link *Num4()//输入一个整数,删除这个数在第3项完成后的链表中的所有出现,并输出
{
        struct link *temp2 = head;
        temp = (struct link*)malloc(sizeof(struct link));
        if(temp == NULL)
        {
                printf("内存分配失败!\n");
                exit(1);
        }
        else
        {
                printf("请输入一个整数:");
                scanf("%d",&temp->data);
                temp->next = NULL;
                while(temp2 != NULL)
                {
                        if(temp == temp2->next)
                        {
                                temp2->next = temp2->next->next;
                                temp2 = temp2->next;
                        }
                        else
                                temp2 = temp2->next;
                }
        }
        Printlink(head);
        free(temp);
        return head;
}

删除链表中所有与输入值相同的元素,不知道上边这个错哪了,求助求助
最佳答案
2020-4-3 19:42:09
if语句应该比较结点的数字域,而不是指针域。
另外你的删除方式也错了,你是这样写的:temp2->next = temp2->next->next;  temp2 = temp2->next;  这样子的话你的temp2 = 原来的temp2->next->next,也就是说你最后free掉的并不是你想删除的那个结点。正确的删除应该这样写:定义一个同类型结点temp3=temp2->next,temp2->next=temp3->next最后free(temp3)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-3 15:46:31 | 显示全部楼层
你应该去比较节点中存放的值 temp->data,而不是直接将两个指针相比
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-3 19:42:09 | 显示全部楼层    本楼为最佳答案   
if语句应该比较结点的数字域,而不是指针域。
另外你的删除方式也错了,你是这样写的:temp2->next = temp2->next->next;  temp2 = temp2->next;  这样子的话你的temp2 = 原来的temp2->next->next,也就是说你最后free掉的并不是你想删除的那个结点。正确的删除应该这样写:定义一个同类型结点temp3=temp2->next,temp2->next=temp3->next最后free(temp3)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-4 15:26:46 | 显示全部楼层
啦啦啦13 发表于 2020-4-3 19:42
if语句应该比较结点的数字域,而不是指针域。
另外你的删除方式也错了,你是这样写的:temp2->next = temp ...

struct link *Num4()//输入一个整数,删除这个数在第3项完成后的链表中的所有出现,并输出
{
        struct link *temp1 = head;
        struct link *temp2 = temp1->next;
        temp = (struct link*)malloc(sizeof(struct link));
        if(temp == NULL)
        {
                printf("内存分配失败!\n");
                exit(1);
        }
        else
        {
                printf("请输入一个整数:");
                scanf("%d",&temp->data);
                temp->next = NULL;
                while(temp1 != NULL)
                {
                        if(temp->data == temp1->data)
                                temp1->next = temp2->next;
                        else
                        {
                                temp1 = temp1->next;
                                temp2 = temp2->next;
                        }
                }
        }
        Printlink(head);
        free(temp);
        return head;
}
能再帮我看下错哪了吗,不会输出结果
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-15 13:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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