-
Notifications
You must be signed in to change notification settings - Fork 0
/
xor-list.cpp
76 lines (60 loc) · 1.7 KB
/
xor-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
#include <iostream>
using namespace std;
class XORNode {
public:
int info;
XORNode *link;
XORNode(int info = 0, XORNode *link = nullptr) {
this -> info = info;
this -> link = link;
}
};
class XORList {
public:
XORNode *head {};
XORNode *tail {};
XORList() = default;
void add(int value) {
auto node = new XORNode(value, head);
if(head == nullptr) {
head = node;
tail = node;
} else {
head -> link = reinterpret_cast<XORNode*>(
reinterpret_cast<uintptr_t>(head -> link) ^ reinterpret_cast<uintptr_t>(node));
head = node;
}
}
void displayForward() const {
XORNode *previous = nullptr;
auto current = head;
while(current != nullptr) {
cout << current -> info << " ";
auto nextNode = reinterpret_cast<XORNode*>(
reinterpret_cast<uintptr_t>(previous) ^ reinterpret_cast<uintptr_t>(current -> link));
previous = current;
current = nextNode;
}
cout << "\n";
}
void displayBackward() const {
XORNode *previous = nullptr;
auto current = tail;
while(current != nullptr) {
cout << current -> info << " ";
auto nextNode = reinterpret_cast<XORNode*>(
reinterpret_cast<uintptr_t>(previous) ^ reinterpret_cast<uintptr_t>(current -> link));
previous = current;
current = nextNode;
}
cout << "\n";
}
};
int main() {
XORList list;
for(int i = 0; i < 10; i++)
list.add(i);
list.displayForward();
list.displayBackward();
return 0;
}