链表所有重复元素的删除

实现链表所有重复元素的删除

#include<stdio.h>
#include<stdlib.h>
typedef struct _Node
{
	int data;
	struct _Node *next;
}Node;

typedef struct _list{
	Node *head;
}List;

void add(List *pList,int number)
{
	Node *p=(Node*)malloc(sizeof(Node));
	p->data=number;
	p->next=NULL;
	Node *last=pList->head;
	if(last)
	{
		while(last->next)
		{
			last=last->next;
		}
		last->next=p;
	}
	else
	     pList->head=p;
}

void add2(List *pList,int number)  
{  
    Node *p=(Node*)malloc(sizeof(Node));  
    p->data=number;  
    p->next=pList->head;  
    pList->head=p;  
}  

void deletel(List *pList)
{
	Node *p;
	Node *q;
	Node *r;
	for(p=pList->head;p;p=p->next)
	{
	    q=p;
	    while(q->next)
	    {
	    	if(p->data==q->next->data)
	    	{
	    		r=q->next;
	    		q->next=r->next;
	    		free(r);
			}
			else
			{
				q=q->next;
			}
		}
	}
}

void showL(List *pList)
{
	Node *p;
	for(p=pList->head;p;p=p->next)
	{
		if(p->next)
		printf("%d ",p->data);
		else
		printf("%d\n",p->data);
	}
   	
}

int count(List *pList)
{
	Node *p;
	int m=0;
	for(p=pList->head;p;p=p->next)
	{
		m++;
	}
	return m;
   	
}

int main()
{
	List L;
	L.head=NULL;
	int n,temp,m;
	scanf("%d",&n);
	for(int i=0;i<n;i++)
	{
		scanf("%d",&temp);
		add2(&L,temp);
	}
	m=count(&L);
	printf("%d\n",m);
	showL(&L); 
	deletel(&L);
	m=count(&L);
	printf("%d\n",m);
	showL(&L);

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值