| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 596 人关注过本帖
标题:[求助]请教:链表 删除相同的元素
只看楼主 加入收藏
pudding
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2005-12-14
收藏
 问题点数:0 回复次数:0 
[求助]请教:链表 删除相同的元素

请问,这个程序错在哪里?
#include<stdio.h>
#include <malloc.h>

typedef int type;
typedef struct node
{type data;
struct node *next;
}lnode,*linkedlist;
//*********************************************

linkedlist linkedlistcreat()
{linkedlist head,r;
head=(lnode *)malloc(sizeof(lnode));
head->next=NULL;
r=head;
int x;
linkedlist p;
printf("请输入元素,输入0结束输入");
scanf("%type",&x);
while(x!=-1)
{p=(lnode *)malloc(sizeof(lnode));
p->data=x;
r->next=p;
r=p;
scanf("%type",&x);
}
r->next=NULL;
return head;
}

linkedlist delsame()
{
linkedlist head;
linkedlist pre,p,u;
pre=head->next;
p=pre->next;
while(p!=NULL)
if(p->data==pre->data)
{u=p;p=p->next;free(p);
}
else
{pre->next=p;
pre=p;
p=p->next;
}
pre->next=p;
return head;
}
void display()
{linkedlist head;
while(head!=NULL)
{printf("%type",head->data);
head=head->next;}
}

void main()
{linkedlist H;
H=linkedlistcreat();
H=delsame();
printf("删除后的元素是:");
void display();
}

搜索更多相关主题的帖子: 链表 元素 删除 
2006-03-23 17:51
快速回复:[求助]请教:链表 删除相同的元素
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.034554 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved