数据结构实验之链表七:单链表中重复元素的删除

来源:互联网 发布:淘宝霸王条款 编辑:程序博客网 时间:2024/05/22 13:52

按照数据输入的相反顺序(逆位序)建立一个单链表,并将单链表中重复的元素删除(值相同的元素只保留最后输入的一个)。
输入
第一行输入元素个数n;
第二行输入n个整数。
输出
第一行输出初始链表元素个数;
第二行输出按照逆位序所建立的初始链表;
第三行输出删除重复元素后的单链表元素个数;
第四行输出删除重复元素后的单链表。
示例输入
10
21 30 14 55 32 63 11 30 55 30
示例输出
10
30 55 30 11 63 32 55 14 30 21
7
30 55 11 63 32 14 21
题解:在找并删除重复元素的时候,你首先应该明确怎样找到他,并且怎样删除它,找可能都会找,就一个一个的比就好了,但是找到怎样删除就是个问题了,其实也很简单就是你设置一个指针,使它跟在比较指针的后面,一旦找到,就用删除的方法进行删除。
#include<bits/stdc++.h>
using namespace std;
struct node
{
int data;
struct node *next;
};
int main()
{
int n,i,x;
cin>>n;
struct node *head,*p,*q;
head=new struct node();
head->next=NULL;
p=new struct node();
for(i=1;i<=n;i++)//直接建立一个逆序表
{
cin>>x;
p->data=x;
p->next=head->next;
head->next=p;
p=new struct node();
}
cout<<n<<endl;
for(q=head->next;q!=NULL;q=q->next)
{
cout<<q->data<<" ";
}
struct node *t;//这就是设置的指针
for(p=head->next;p!=NULL;p=p->next)
{
t=p;//指针t跟在指针q的后面
for(q=p->next;q!=NULL;q=q->next)
{
if(p->data==q->data)//找到就进行删除操作
{
t->next=q->next;
n--;
}
else
t=t->next;//没找到就将t指针往下移
}
}
cout<<endl<<n<<endl;
for(q=head->next;q!=NULL;q=q->next)
{
cout<<q->data<<" ";
}
return 0;
}

1 0
原创粉丝点击