-
Notifications
You must be signed in to change notification settings - Fork 0
/
doubly-linklist.cpp
94 lines (85 loc) · 1.61 KB
/
doubly-linklist.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include<iostream>
using namespace std;
class node{
public:
int data;
node*next;
node*prev;
node(int val){
data=val;
next=NULL;
prev=NULL;
}
};
void insertatHead(node*&head,int val){
node*n=new node(val);
n->next=head;
if(head!=NULL){
head->prev=n;
}
head=n;
}
void insertatTail(node*&head,int val){
node*n=new node(val);
if(head==NULL){
insertatHead(head,val);
return;
}
node*temp=head;
while(temp->next!=NULL){
temp=temp->next;
}
temp->next=n;
n->prev=temp;
}
void display(node*head){
node*temp=head;
while(temp!=NULL){
cout<<temp->data<<"->";
temp=temp->next;
}
cout<<"NULL"<<endl;
}
void deleteatHead(node*&head){
node*todelete=head;
head=head->next;
head->prev=NULL;
delete todelete;
}
void deletion(node*&head,int pos){
if(pos==1){
deleteatHead(head);
return ;
}
int count=1;
node*temp=head;
while (temp!=NULL&&count!=pos)
{
temp=temp->next;
count++;
}
temp->prev->next=temp->next;
if(temp->prev!=NULL)
{
temp->next->prev=temp->prev;
}
delete temp;
}
int main(){
node*head=NULL;
insertatTail(head,2);
insertatTail(head,3);
insertatTail(head,4);
insertatTail(head,5);
insertatTail(head,6);
insertatTail(head,7);
insertatTail(head,8);
insertatTail(head,9);
insertatTail(head,0);
insertatTail(head,12);
insertatTail(head,13);
insertatTail(head,14);
display(head);
deletion(head,5);
display(head);
}