-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoublelinkedlist.cpp
More file actions
212 lines (184 loc) · 4.3 KB
/
doublelinkedlist.cpp
File metadata and controls
212 lines (184 loc) · 4.3 KB
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
#include <iostream>
class Node {
public:
int data;
Node* next;
Node* prev;
Node(int value) {
data = value;
next = nullptr;
prev = nullptr;
}
};
class DoublyLinkedList {
private:
Node* head;
Node* tail;
public:
DoublyLinkedList() {
head = nullptr;
tail = nullptr;
}
bool isEmpty() {
return head == nullptr;
}
void insertAtHead(int value) {
Node* newNode = new Node(value);
if (isEmpty()) {
head = newNode;
tail = newNode;
} else {
newNode->next = head;
head->prev = newNode;
head = newNode;
}
}
void insertAtTail(int value) {
Node* newNode = new Node(value);
if (isEmpty()) {
head = newNode;
tail = newNode;
} else {
tail->next = newNode;
newNode->prev = tail;
tail = newNode;
}
}
void deleteAtHead() {
if (isEmpty()) {
std::cout << "List is empty" << std::endl;
return;
}
Node* temp = head;
head = head->next;
if (head != nullptr) {
head->prev = nullptr;
} else {
tail = nullptr;
}
delete temp;
}
void deleteAtTail() {
if (isEmpty()) {
std::cout << "List is empty" << std::endl;
return;
}
Node* temp = tail;
tail = tail->prev;
if (tail != nullptr) {
tail->next = nullptr;
} else {
head = nullptr;
}
delete temp;
}
void printForward() {
Node* temp = head;
while (temp != nullptr) {
std::cout << temp->data << " ";
temp = temp->next;
}
std::cout << std::endl;
}
void printBackward() {
Node* temp = tail;
while (temp != nullptr) {
std::cout << temp->data << " ";
temp = temp->prev;
}
std::cout << std::endl;
}
};
int main() {
DoublyLinkedList list;
list.insertAtHead(3);
list.insertAtHead(2);
list.insertAtHead(1);
list.insertAtTail(4);
list.insertAtTail(5);
list.printForward(); // output: 1 2 3 4 5
list.printBackward(); // output: 5 4 3 2 1
list.deleteAtHead();
list.deleteAtTail();
list.printForward(); // output: 2 3 4
list.printBackward(); // output: 4 3 2
return 0;
}
//java
public class DoublyLinkedList {
private Node head;
private Node tail;
private class Node {
private int data;
private Node prev;
private Node next;
public Node(int data) {
this.data = data;
this.prev = null;
this.next = null;
}
}
public DoublyLinkedList() {
this.head = null;
this.tail = null;
}
public boolean isEmpty() {
return head == null;
}
public void addFirst(int data) {
Node newNode = new Node(data);
if (isEmpty()) {
tail = newNode;
} else {
head.prev = newNode;
}
newNode.next = head;
head = newNode;
}
public void addLast(int data) {
Node newNode = new Node(data);
if (isEmpty()) {
head = newNode;
} else {
tail.next = newNode;
newNode.prev = tail;
}
tail = newNode;
}
public void deleteFirst() {
if (isEmpty()) {
throw new NoSuchElementException();
}
if (head == tail) {
head = null;
tail = null;
} else {
head = head.next;
head.prev = null;
}
}
public void deleteLast() {
if (isEmpty()) {
throw new NoSuchElementException();
}
if (head == tail) {
head = null;
tail = null;
} else {
tail = tail.prev;
tail.next = null;
}
}
public void printList() {
if (isEmpty()) {
System.out.println("The list is empty.");
return;
}
Node current = head;
while (current != null) {
System.out.print(current.data + " ");
current = current.next;
}
System.out.println();
}
}