-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoublyLinkedList.cpp
105 lines (82 loc) · 1.55 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
#include<iostream>
using namespace std;
#define MAX_NODE 10000
struct Node {
int val;
Node *next;
Node *prev;
};
Node pool[MAX_NODE];
int nCnt;
Node *newNode(const int val) {
Node *n = &pool[nCnt++];
n->val = val;
n->prev = 0;
n->next = 0;
return n;
}
struct LinkedList {
Node *head;
Node *tail;
void init() {
head = newNode(-987654321);
tail = newNode(-987654321);
head->next = tail;
tail->prev = head;
}
void push_back(const int val) {
Node *node = newNode(val);
node->prev = tail->prev;
node->next = tail;
tail->prev->next = node;
tail->prev = node;
}
void push_front(const int val) {
Node *node = newNode(val);
node->next = head->next;
node->prev = head;
head->next->prev = node;
head->next = node;
}
Node *findSeq(const int val) {
Node *itr = head;
while (itr->next) {
if (val <= itr->next->val)
return itr->next;
itr = itr->next;
}
return itr;
}
void push_sequence(const int val) {
Node *node = newNode(val);
Node *findNode = findSeq(val);
node->prev = findNode->prev;
node->next = findNode;
findNode->prev->next = node;
findNode->prev = node;
}
void printList() {
Node *itr = head->next;
while (itr->next) {
cout << itr->val << ' ';
itr = itr->next;
}
cout << '\n';
}
};
LinkedList list;
int main() {
list.init();
list.push_back(2);
list.push_back(5);
list.push_back(8);
list.push_back(1);
list.printList();
list.init();
list.printList();
list.push_sequence(3);
list.push_sequence(1);
list.push_sequence(8);
list.push_sequence(2);
list.printList();
}