Linked List
Linked List
Singly Linked List
A list of nodes in Linear form each node has data and a pointer to the next node (NULL if there’s no nodes).
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
template <typename T>
struct SNode
{
T elem;
SNode<T> *next;
};
template <typename E>
class SLinkedList
{
public:
SLinkedList() : head(NULL) {}
~SLinkedList()
{
while (!empty())
{
removeFront();
}
}
bool empty() const
{
return head == NULL;
}
const E &front() const
{
return head->elem;
}
void addFront(const E &e)
{
SNode<E> *nd = new SNode<E>;
nd->elem = e;
nd->next = head;
head = nd;
}
void removeFront()
{
SNode<E> *old = head;
head = head->next;
delete old;
}
private:
SNode<E> *head;
};
Doubly Linked List
Each node has a pointer to its next and another to its previous. To ease the implementation we’ll use dummy nodes as header and trailer.
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
template <typename T>
struct DNode
{
T elem;
DNode<T> *next;
DNode<T> *prev;
};
template <typename E>
class DLinkedList
{
public:
DLinkedList()
{
header = new DNode<E>;
trailer = new DNode<E>;
header->next = trailer;
trailer->prev = header;
}
~DLinkedList()
{
while (!empty())
{
removeFront();
}
delete header;
delete trailer;
}
bool empty() const
{
return header->next == trailer;
}
const E &front() const
{
return header->next->elem;
}
const E &back() const
{
return trailer->prev->elem;
}
void addFront(const E &e)
{
add(header->next, e);
}
void addBack(const E &e)
{
add(trailer, e);
}
void removeFront()
{
remove(header->next);
}
void removeBack()
{
remove(trailer->prev);
}
protected:
void add(DNode<E> *v, const E &e)
{ // insert new node before v
DNode<E> *u = new DNode<E>;
u->elem = e;
u->next = v;
u->prev = v->prev;
v->prev->next = u;
v->prev = u;
}
void remove(DNode<E> *v)
{ // remove node v
// u <-> v <-> w
DNode<E> *u = v->prev;
DNode<E> *w = v->next;
u->next = w;
w->prev = u;
delete v;
}
private:
DNode<E> *header, *trailer;
};
Circularly Linked List
Just a singly linked list but the tail points to the head instead of pointing to NULL. The node referenced by the cursor is called the back, and the node immediately following is called the front.
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
template <typename E>
class CircleList
{
public:
CircleList() : cursor(NULL) {}
~CircleList()
{
while (!empty())
{
remove();
}
}
bool empty() const
{
return cursor == NULL;
}
const E &front() const
{
return cursor->next->elem;
}
const E &back() const
{
return cursor->elem;
}
void advance() // The front is pushed back
{
cursor = cursor->next;
}
void add(const E &e) // Insert after cursor
{
SNode<E> *v = new SNode<E>;
v->elem = e;
if (cursor == NULL)
{
cursor = v;
cursor->next = cursor;
}
else
{
v->next = cursor->next;
cursor->next = v;
}
}
void remove()
{ // remove the node after cursor
SNode<E> *temp = cursor->next;
if (temp = cursor)
{ // only one node
cursor = NULL;
}
else
{
cursor->next = cursor->next->next;
}
delete temp;
}
private:
SNode<E> *cursor;
};
This post is licensed under CC BY 4.0 by the author.