This repository was archived by the owner on Nov 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbtree_iterator.h
149 lines (129 loc) · 5.34 KB
/
btree_iterator.h
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#ifndef BTREE_ITERATOR_H
#define BTREE_ITERATOR_H
#include <iterator>
#include <stack>
template <typename T> class btree;
template <typename T> class Node;
template<typename T>
class BTreeIterator {
public:
using difference_type = ptrdiff_t;
using iterator_category = std::bidirectional_iterator_tag;
using value_type = T;
using pointer = T*;
using reference = T&;
// using size_type = typename btree<T>::size_type;
using size_type = unsigned int;
using Node = typename btree<std::remove_const_t<T>>::Node;
reference operator*() const {
return node->elems[indices.top()];
}
pointer operator->() const {
return &(operator*());
}
// prefix inc
BTreeIterator& operator++() {
// go to leftmost thing that is to the right of the current node
// if there is a child to the right (i.e. in index i+1), take the leftmost thing in that subtree
// else take the elem to the right (i.e. i+1)
// if no elem or child to the right, take the elem to the right in the parent
// if no elem to the right in the parent go to the next parent. continue as necessary
if (indices.top() + 1 < node->children.size() &&
node->children.at(indices.top() + 1)) {
// if there is a child to the right, go to it
++indices.top();
node = node->children.at(indices.top()).get();
indices.push(0);
// go to smallest elem in the right subtree
while (!node->children.empty() && node->children.at(0)) {
node = node->children.at(0).get();
indices.push(0);
}
} else {
Node* originalNode = node;
auto originalIndices = indices;
++indices.top();
// go upwards until at valid elem
while (indices.top() == node->elems.size()) {
indices.pop();
if (node->parent == nullptr) {
// at end
endParent = originalNode;
node = nullptr;
indices = originalIndices;
// note does not add extra index to indices
break;
}
// go up
node = node->parent;
}
}
return *this;
}
// postfix inc
BTreeIterator operator++(int) {
BTreeIterator tmp = *this;
++*this;
return tmp;
}
// prefix dec
BTreeIterator& operator--() {
if (node == nullptr && endParent != nullptr) {
// at end
node = endParent;
endParent = nullptr;
} else if (indices.top() < node->children.size() &&
node->children.at(indices.top())) {
// if there is a child to the left, go to it
node = node->children.at(indices.top()).get();
indices.push(node->elems.size() - 1); // be careful of index
// go to largest elem in the left subtree
while (node->children.size() == node->elems.size() + 1 && node->children.at(node->elems.size())) {
// while there is a child to the right of the final elem
node = node->children.at(node->elems.size()).get();
indices.push(node->elems.size() - 1);
}
} else {
// go upwards until at valid elem
while (indices.top() == 0) {
indices.pop();
// if index is 0, need to go from parent to child again since cant decrement
node = node->parent;
}
--indices.top();
}
return *this;
}
// postfix dec
BTreeIterator operator--(int) {
BTreeIterator tmp = *this;
--*this;
return tmp;
}
bool operator==(const BTreeIterator& other) const {
return node == other.node && indices == other.indices && endParent == other.endParent;
}
bool operator!=(const BTreeIterator& other) const {
return !operator==(other);
}
// casting iterators to const_iterators
operator BTreeIterator<const T>() const {
return BTreeIterator<const T>(node, indices, endParent);
}
BTreeIterator(Node* node_, std::stack<size_type> indices_): BTreeIterator(node_, indices_, nullptr) { }
BTreeIterator(std::stack<size_type> indices_, Node* endParent_): node{nullptr}, indices{indices_}, endParent{endParent_} { }
BTreeIterator(Node* node_, std::stack<size_type> indices_, Node* endParent_): node{node_}, indices{indices_}, endParent{endParent_} { }
private:
Node* node;
std::stack<size_type> indices;
Node* endParent;
};
template <typename T>
bool operator==(const BTreeIterator<T>& a, const BTreeIterator<const T>& b) {
return static_cast<BTreeIterator<const T>>(a) == b;
}
template <typename T>
bool operator!=(const BTreeIterator<T>& a, const BTreeIterator<const T>& b) {
return !(a == b);
}
#endif