-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlist.cpp
120 lines (98 loc) · 2.22 KB
/
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
#include "list.hpp"
#include <iostream>
List::Node* createNode(const List::value_type& data, List::Node* prev, List::Node* next)
{
List::Node* node = new List::Node();
node->Data = data;
node->Prev = prev;
node->Next = next;
return node;
}
void destroyNode(List::Node** ptr)
{
List::Node* node = *ptr;
delete node;
*ptr = nullptr;
}
List* initList()
{
List* ls = new List();
ls->Head = nullptr;
ls->Tail = nullptr;
return ls;
}
void destroyList(List** ls)
{
List* list = *ls;
List::Node* head = list->Head;
while (head)
{
List::Node* tmp = head->Next;
delete head;
head = tmp;
}
delete list;
*ls = nullptr;
}
List::Node* pushFront(List* const list, const List::value_type & data)
{
List::Node* node = createNode(data, nullptr, list->Head);
if (list->Head)
list->Head->Prev = node;
list->Head = node;
if (list->Tail == nullptr)
list->Tail = node;
return node;
}
List::Node* pushBack(List* const list, const List::value_type & data)
{
List::Node* node = createNode(data, list->Tail, nullptr);
if (list->Tail)
list->Tail->Next = node;
list->Tail = node;
if (list->Head == nullptr)
list->Head = node;
return node;
}
List::Node* insert(List* const list, List::Node* const where, const List::value_type& data)
{
List::Node* newNode = createNode(data, where->Prev, where);
List::Node* prev = where->Prev;
if (prev)
prev->Next = newNode;
where->Prev = newNode;
return newNode;
}
List::Node* erase(List* const list, List::Node* const where)
{
List::Node* next = where->Next;
List::Node* prev = where->Prev;
if (list->Head == where)
list->Head = next;
if (list->Tail == where)
list->Tail = prev;
if (prev)
prev->Next = next;
delete where;
return next;
}
size_t size(const List* const list)
{
size_t size = 0;
List::Node* head = list->Head;
while (head)
{
++size;
head = head->Next;
}
return size;
}
void print(const List* const ls)
{
List::Node* tmp = ls->Head;
while (tmp)
{
std::cout << tmp->Data << std::endl;
tmp = tmp->Next;
}
}