-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathDoublyLinkedList.cpp
151 lines (120 loc) · 2.58 KB
/
DoublyLinkedList.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
141
142
143
144
145
146
147
148
149
150
151
#include <iostream>
using namespace std;
class Node {
public:
int data ;
Node*prev;
Node*next ;
Node(int value){
this->data= value;
prev=NULL;
next-NULL;
}
};
// printing the linked List
void printDoublyLL(Node* head)
{
Node* temp= head;
while(temp!=NULL)
{
cout<<temp->data<<" ";
temp= temp->next;
}
cout<<endl;
}
// Insertion At Head
void insertAthead(Node*&head, Node*&tail , int value)
{
// If List is empty
if(head==NULL)
{
Node * nodeToInsert = new Node(value);
head= nodeToInsert;
tail= nodeToInsert;
}
// List is not empty
else{
Node * nodeToInsert = new Node(value); // Step1-> Creating New node
nodeToInsert->next = head; // linking the node at start
head->prev= nodeToInsert;
head= nodeToInsert; // updating the head
}
}
// Insertion at Tail
void insertAtTail(Node*&head, Node* &tail, int value)
{
// If List is empty
if(tail==NULL)
{
Node * nodeToInsert = new Node(value);
head= nodeToInsert;
tail= nodeToInsert;
}
// List is not empty
else{
Node * nodeToInsert = new Node(value); // Step1-> Creating New node
nodeToInsert->prev = tail; // linking the node at start
tail->next = nodeToInsert;
tail= nodeToInsert; // updating the head
}
}
int getLength(Node*head)
{
int length=1;
Node*temp= head;
if(head==NULL)
{
return 0;
}
while( temp!=NULL)
{
length++;
temp =temp->next;
}
return length;
}
Node* insertionAtPosition(Node* &head, Node* &tail , int value, int position)
{
int length = getLength(head);
if(position == 1)
{
insertAthead(head, tail , value);
}
else if(position >= length)
{
insertAtTail(head, tail, value);
}
else
{
int count = 1;
Node *temp = head;
while(count < position - 1)// position -1 because we want to stop just before the position we want to insert
{
temp = temp->next;
count++;
}
Node* nodeToInsert = new Node(value);
nodeToInsert->next = temp->next;
temp->next->prev = nodeToInsert;
temp->next = nodeToInsert;
nodeToInsert->prev = temp;
}
return head; // Return the head of the modified list
}
int main() {
// Node* temp = new Node(10);
Node* head= NULL;
Node* tail= NULL;
insertAthead(head,tail,10);
insertAthead(head,tail,20);
insertAthead(head,tail,30);
printDoublyLL(head);
insertAtTail(head, tail, 100);
insertAtTail(head, tail, 110);
insertAtTail(head, tail, 120);
printDoublyLL(head);
insertionAtPosition(head,tail,40,4);
insertionAtPosition(head,tail,130,8);
printDoublyLL(head);
return 0;
}