-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoubly_Linked_List.cpp
140 lines (104 loc) · 1.86 KB
/
Doubly_Linked_List.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#include<iostream>
using namespace std;
struct node
{
int data;
node*forward;
node*back;
};
node*first = NULL;
node*last=NULL;
//int p = 1;
node*create_node(int item)
{
node*newnode = new node;
if(newnode==NULL)
{
cout<<"overflow"<<endl;
exit(1);
}
newnode->data = item;
newnode->forward = NULL;
return newnode;
}
void insert_at_beg(node*NEW)
{
if(first==NULL && last ==NULL)
{
first= NEW;
last= NEW;
}
else
{
NEW->forward = first;
first->back = NEW;
first=NEW;
}
}
void insert_at_end(node*NEW)
{
if(first==NULL && last ==NULL)
{
first= NEW;
last= NEW;
}
else
{
node*ptr= first;
while(ptr->forward!= NULL)
{
ptr=ptr->forward;
}
ptr->forward =NEW;
NEW->back = ptr;
}
}
void insert_at_any_pos(int position,node*NEW)
{
node*ptr= first;
node*track;
int p = 1;
while(ptr->forward!=NULL)
{
track = ptr;
ptr=ptr->forward;
p++;
if(p==position)
{
track->forward = NEW;
NEW->forward =ptr;
ptr->back=NEW;
}
}
}
void traverse()
{
node*ptr= first;
while(ptr!=NULL)
{
cout<<ptr->data<<" ";
ptr=ptr->forward;
}
cout<<endl;
}
int main()
{
int n,item;
cin>>n;
for(int i =0 ;i<n;i++)
{
cin>>item;
node*NEW=create_node(item);
// insert_at_beg(NEW);
insert_at_end(NEW);
}
traverse();
int i;
cin>>i;
int pos;
cin>>pos;
node*newnode = create_node(i);
insert_at_any_pos(pos,newnode);
traverse();
return 0;
}