题目描述 【数据结构|数据结构实验之链表七(单链表中重复元素的删除)】按照数据输入的相反顺序(逆位序)建立一个单链表,并将单链表中重复的元素删除(值相同的元素只保留最后输入的一个)。
输入 第一行输入元素个数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
提示
来源 不得使用数组!
这几天一直在做单向链表,慢慢的熟悉了,现在打起来也很随意了。
这题,我觉得可能出毛病的地方就是删掉一个之后怎么处理(我开始的时候处理是错的,测例能过,但是交上去运行出错,检查后发现有漏洞,改了之后就AC了)
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define CLR(a, b) memset(a, (b), sizeof(a))
#define INF 0x3f3f3f3f
#define eps 1e-8
using namespace std;
typedef struct Node
{
int date;
struct Node *next;
}node;
node *creat(int n)
{
node *head=(node *)malloc(sizeof(node));
node *r=NULL;
for(int i=0;
idate=date;
head->next=NULL;
r=head;
}
else{
node *p=(node *)malloc(sizeof(node));
p->date=date;
p->next=r;
r=p;
}
}
return r;
}
void show(node *head)
{
node *pr=head;
while(pr->next)
{
printf("%d ",pr->date);
pr=pr->next;
}
printf("%d\n",pr->date);
}
void delet(int *n,node *head)
{
node *pr=head;
while(pr->next)
{
node *r=pr;
node *p=r->next;
while(r->next)
{
if(pr->date==p->date)
{
r->next=p->next;
free(p);
(*n)--;
p=r->next;
}
else{
r=r->next;
p=r->next;
}
}
pr=pr->next;
}
}
int main()
{
#ifdef LOCAL
freopen("E://in.txt","r",stdin);
#endif // LOCAL
int n;
while(scanf("%d",&n)!=EOF)
{
node *head=creat(n);
printf("%d\n",n);
show(head);
delet(&n,head);
printf("%d\n",n);
show(head);
}return 0;
}
推荐阅读
- 笔记|C语言数据结构——二叉树的顺序存储和二叉树的遍历
- C语言学习(bit)|16.C语言进阶——深度剖析数据在内存中的存储
- 数据结构和算法|LeetCode 的正确使用方式
- 先序遍历 中序遍历 后序遍历 层序遍历
- 数据结构|C++技巧(用class类实现链表)
- 数据结构|贪吃蛇代码--c语言版 visual c++6.0打开
- 算法|算法-二分查找
- 数据结构学习指导|数据结构初阶(线性表)
- leetcode题解|leetcode#106. 从中序与后序遍历序列构造二叉树
- java|ObjectOrientedProgramming - 面向对象的编程(多态、抽象类、接口)- Java - 细节狂魔