#include <bits/stdc++.h>
using namespace std;
struct Node{
int data;
Node *next,*pre;
};
Node* CreatList(){
Node *head=new Node,*p=head;
int data;
if(cin>>data){
head->data=data;
head->next=head->pre=head;
}
while(cin>>data){
Node *q=new Node;
q->data=data;
q->pre=p;
p->next=q;
p=q;
}
p->next=head;
head->pre=p;
return head;
}
void DeleteList(Node* head, int x){
Node *p=head,*q;
for(int i=1;i<x;i++) p=p->next;
q=p->next;
p->next=q->next;
q->next->pre=p;
delete q;
}
void show(Node* head){
Node* p=head;
if(!p) return;
cout<<p->data<<' ';
p=p->next;
while(p!=head){
cout<<p->data<<' ';
p=p->next;
}
}
void reshow(Node* head){
Node* p=head;
if(!p) return;
cout<<p->data<<' ';
p=p->pre;
while(p!=head){
cout<<p->data<<' ';
p=p->pre;
}
}
int main(){
freopen("in.txt","r",stdin);
freopen("out.txt","w",stdout);
Node *head=CreatList();
DeleteList(head,1);
show(head);
cout<<endl;
reshow(head);
return 0;
}
无头节点的双向循环链表
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1.1 题目 题号1:分别以单链表、循环链表、双向链表为例,实现线性表的建立、插入、删除、查找等基本操作。 要求:...