-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathdouble_linked_list.cpp
94 lines (80 loc) · 2.18 KB
/
double_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
#include <iostream>
class Node {
public:
int data;
Node* prev;
Node* next;
Node(int value) : data(value), prev(nullptr), next(nullptr) {}
};
class DoublyLinkedList {
private:
Node* head;
Node* tail;
public:
DoublyLinkedList() : head(nullptr), tail(nullptr) {}
// Append a new node to the end of the list
void append(int data) {
Node* newNode = new Node(data);
if (!head) {
head = tail = newNode;
} else {
tail->next = newNode;
newNode->prev = tail;
tail = newNode;
}
}
// Prepend a new node to the beginning of the list
void prepend(int data) {
Node* newNode = new Node(data);
if (!head) {
head = tail = newNode;
} else {
newNode->next = head;
head->prev = newNode;
head = newNode;
}
}
// Delete a node with a given value from the list
void deleteNode(int data) {
Node* current = head;
while (current) {
if (current->data == data) {
if (current == head) {
head = current->next;
if (head) {
head->prev = nullptr;
}
} else if (current == tail) {
tail = current->prev;
tail->next = nullptr;
} else {
current->prev->next = current->next;
current->next->prev = current->prev;
}
delete current;
return;
}
current = current->next;
}
}
// Display the elements of the list
void display() {
Node* current = head;
while (current) {
std::cout << current->data << " <-> ";
current = current->next;
}
std::cout << "nullptr" << std::endl;
}
};
int main() {
DoublyLinkedList dll;
dll.append(1);
dll.append(2);
dll.append(3);
dll.prepend(0);
dll.display(); // Output: 0 <-> 1 <-> 2 <-> 3 <-> nullptr
dll.deleteNode(2);
dll.display(); // Output: 0 <-> 1 <-> 3 <-> nullptr
return 0;
}