#include<bits/stdc++.h>
using namespace std;
void bulidlist(int n);
void print();
void del(int n);
int key,rest;
struct node
{
int data;
struct node *next;
};
struct node *head,*tail,*p,*q;
int main()
{
int n;
cin>>n;
bulidlist(n);
cin>>key;
cout<<n<<endl;
print();
cout<<endl;
del(n);
cout<<rest<<endl;
print();
return 0;
}
void print()
{
p=head->next;
while(p)
{
cout<<p->data;
if(p->next)
cout<<" ";
p=p->next;
}
}
void bulidlist(int n)
{
head=(struct node *)malloc(sizeof(struct node));
head->next=NULL;
tail=head;
while(n--)
{
p=(struct node *)malloc(sizeof(struct node));
cin>>p->data;
p->next=NULL;
tail->next=p;
tail=p;
}
}
void del(int n)
{
rest=n;
p=head;
while(p->next)
{
if(p->next->data==key)
{
rest--;
q=p->next;
p->next=q->next;
free(q);
}
else
p=p->next;
}
}
SDUT1138数据结构上机测试2-1:单链表操作A
最新推荐文章于 2024-05-22 11:07:35 发布
本文介绍了一个简单的链表操作实现,包括链表的构建、打印及删除特定元素的过程。通过C++代码展示了如何创建链表节点、构建链表、遍历打印链表中的元素以及删除指定值的所有节点。
2795

被折叠的 条评论
为什么被折叠?



