Bumping manifests a=b2g-bump
[gecko.git] / mfbt / SplayTree.h
blobf620c4ddda7a95fa3daefa4ee4440b98b8ed27e8
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /**
8 * A sorted tree with optimal access times, where recently-accessed elements
9 * are faster to access again.
12 #ifndef mozilla_SplayTree_h
13 #define mozilla_SplayTree_h
15 #include "mozilla/Assertions.h"
16 #include "mozilla/NullPtr.h"
18 namespace mozilla {
20 template<class T, class C>
21 class SplayTree;
23 template<typename T>
24 class SplayTreeNode
26 public:
27 template<class A, class B>
28 friend class SplayTree;
30 SplayTreeNode()
31 : mLeft(nullptr)
32 , mRight(nullptr)
33 , mParent(nullptr)
36 private:
37 T* mLeft;
38 T* mRight;
39 T* mParent;
43 /**
44 * Class which represents a splay tree.
45 * Splay trees are balanced binary search trees for which search, insert and
46 * remove are all amortized O(log n), but where accessing a node makes it
47 * faster to access that node in the future.
49 * T indicates the type of tree elements, Comparator must have a static
50 * compare(const T&, const T&) method ordering the elements. The compare
51 * method must be free from side effects.
53 template<typename T, class Comparator>
54 class SplayTree
56 T* mRoot;
58 public:
59 SplayTree()
60 : mRoot(nullptr)
63 bool empty() const
65 return !mRoot;
68 T* find(const T& aValue)
70 if (empty()) {
71 return nullptr;
74 T* last = lookup(aValue);
75 splay(last);
76 return Comparator::compare(aValue, *last) == 0 ? last : nullptr;
79 bool insert(T* aValue)
81 MOZ_ASSERT(!find(*aValue), "Duplicate elements are not allowed.");
83 if (!mRoot) {
84 mRoot = aValue;
85 return true;
87 T* last = lookup(*aValue);
88 int cmp = Comparator::compare(*aValue, *last);
90 T** parentPointer = (cmp < 0) ? &last->mLeft : &last->mRight;
91 MOZ_ASSERT(!*parentPointer);
92 *parentPointer = aValue;
93 aValue->mParent = last;
95 splay(aValue);
96 return true;
99 T* remove(const T& aValue)
101 T* last = lookup(aValue);
102 MOZ_ASSERT(last, "This tree must contain the element being removed.");
103 MOZ_ASSERT(Comparator::compare(aValue, *last) == 0);
105 // Splay the tree so that the item to remove is the root.
106 splay(last);
107 MOZ_ASSERT(last == mRoot);
109 // Find another node which can be swapped in for the root: either the
110 // rightmost child of the root's left, or the leftmost child of the
111 // root's right.
112 T* swap;
113 T* swapChild;
114 if (mRoot->mLeft) {
115 swap = mRoot->mLeft;
116 while (swap->mRight) {
117 swap = swap->mRight;
119 swapChild = swap->mLeft;
120 } else if (mRoot->mRight) {
121 swap = mRoot->mRight;
122 while (swap->mLeft) {
123 swap = swap->mLeft;
125 swapChild = swap->mRight;
126 } else {
127 T* result = mRoot;
128 mRoot = nullptr;
129 return result;
132 // The selected node has at most one child, in swapChild. Detach it
133 // from the subtree by replacing it with that child.
134 if (swap == swap->mParent->mLeft) {
135 swap->mParent->mLeft = swapChild;
136 } else {
137 swap->mParent->mRight = swapChild;
139 if (swapChild) {
140 swapChild->mParent = swap->mParent;
143 // Make the selected node the new root.
144 mRoot = swap;
145 mRoot->mParent = nullptr;
146 mRoot->mLeft = last->mLeft;
147 mRoot->mRight = last->mRight;
148 if (mRoot->mLeft) {
149 mRoot->mLeft->mParent = mRoot;
151 if (mRoot->mRight) {
152 mRoot->mRight->mParent = mRoot;
155 return last;
158 T* removeMin()
160 MOZ_ASSERT(mRoot, "No min to remove!");
162 T* min = mRoot;
163 while (min->mLeft) {
164 min = min->mLeft;
166 return remove(*min);
169 // For testing purposes only.
170 void checkCoherency()
172 checkCoherency(mRoot, nullptr);
175 private:
177 * Returns the node in this comparing equal to |aValue|, or a node just
178 * greater or just less than |aValue| if there is no such node.
180 T* lookup(const T& aValue)
182 MOZ_ASSERT(!empty());
184 T* node = mRoot;
185 T* parent;
186 do {
187 parent = node;
188 int c = Comparator::compare(aValue, *node);
189 if (c == 0) {
190 return node;
191 } else if (c < 0) {
192 node = node->mLeft;
193 } else {
194 node = node->mRight;
196 } while (node);
197 return parent;
201 * Rotate the tree until |node| is at the root of the tree. Performing
202 * the rotations in this fashion preserves the amortized balancing of
203 * the tree.
205 void splay(T* aNode)
207 MOZ_ASSERT(aNode);
209 while (aNode != mRoot) {
210 T* parent = aNode->mParent;
211 if (parent == mRoot) {
212 // Zig rotation.
213 rotate(aNode);
214 MOZ_ASSERT(aNode == mRoot);
215 return;
217 T* grandparent = parent->mParent;
218 if ((parent->mLeft == aNode) == (grandparent->mLeft == parent)) {
219 // Zig-zig rotation.
220 rotate(parent);
221 rotate(aNode);
222 } else {
223 // Zig-zag rotation.
224 rotate(aNode);
225 rotate(aNode);
230 void rotate(T* aNode)
232 // Rearrange nodes so that aNode becomes the parent of its current
233 // parent, while preserving the sortedness of the tree.
234 T* parent = aNode->mParent;
235 if (parent->mLeft == aNode) {
236 // x y
237 // y c ==> a x
238 // a b b c
239 parent->mLeft = aNode->mRight;
240 if (aNode->mRight) {
241 aNode->mRight->mParent = parent;
243 aNode->mRight = parent;
244 } else {
245 MOZ_ASSERT(parent->mRight == aNode);
246 // x y
247 // a y ==> x c
248 // b c a b
249 parent->mRight = aNode->mLeft;
250 if (aNode->mLeft) {
251 aNode->mLeft->mParent = parent;
253 aNode->mLeft = parent;
255 aNode->mParent = parent->mParent;
256 parent->mParent = aNode;
257 if (T* grandparent = aNode->mParent) {
258 if (grandparent->mLeft == parent) {
259 grandparent->mLeft = aNode;
260 } else {
261 grandparent->mRight = aNode;
263 } else {
264 mRoot = aNode;
268 T* checkCoherency(T* aNode, T* aMinimum)
270 if (mRoot) {
271 MOZ_RELEASE_ASSERT(!mRoot->mParent);
273 if (!aNode) {
274 MOZ_RELEASE_ASSERT(!mRoot);
275 return nullptr;
277 if (!aNode->mParent) {
278 MOZ_RELEASE_ASSERT(aNode == mRoot);
280 if (aMinimum) {
281 MOZ_RELEASE_ASSERT(Comparator::compare(*aMinimum, *aNode) < 0);
283 if (aNode->mLeft) {
284 MOZ_RELEASE_ASSERT(aNode->mLeft->mParent == aNode);
285 T* leftMaximum = checkCoherency(aNode->mLeft, aMinimum);
286 MOZ_RELEASE_ASSERT(Comparator::compare(*leftMaximum, *aNode) < 0);
288 if (aNode->mRight) {
289 MOZ_RELEASE_ASSERT(aNode->mRight->mParent == aNode);
290 return checkCoherency(aNode->mRight, aNode);
292 return aNode;
295 SplayTree(const SplayTree&) MOZ_DELETE;
296 void operator=(const SplayTree&) MOZ_DELETE;
299 } /* namespace mozilla */
301 #endif /* mozilla_SplayTree_h */