summaryrefslogtreecommitdiff
path: root/datastructures/treap.cpp
diff options
context:
space:
mode:
authorPaul Jungeblut <paul.jungeblut@gmail.com>2017-03-26 13:33:04 +0200
committerPaul Jungeblut <paul.jungeblut@gmail.com>2017-03-26 13:33:04 +0200
commita777f2da69425de95680d6c0713b629981e3846d (patch)
tree16e9199f66115126ad4910192732e3432f588bb0 /datastructures/treap.cpp
parentc598abce5b1fed25b839dd27079bbc8d726f2a7a (diff)
Adding treap code and changes on LCA code.
Diffstat (limited to 'datastructures/treap.cpp')
-rw-r--r--datastructures/treap.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/datastructures/treap.cpp b/datastructures/treap.cpp
new file mode 100644
index 0000000..7c4ce7f
--- /dev/null
+++ b/datastructures/treap.cpp
@@ -0,0 +1,39 @@
+struct item {
+ int key, prior;
+ item *l, *r;
+ item() { }
+ item (int key, int prior) : key(key), prior(prior), l(NULL), r(NULL) { }
+};
+
+void split (item *t, int key, item *l, item *r) {
+ if (!t) l = r = NULL;
+ else if (key < t->key) split(t->l, key, l, t->l), r = t;
+ else split(t->r, key, t->r, r), l = t;
+}
+
+void insert (item *t, item *it) {
+ if (!t) t = it;
+ else if (it->prior > t->prior) split(t, it->key, it->l, it->r), t = it;
+ else insert(it->key < t->key ? t->l : t->r, it);
+}
+
+void merge (item *t, item *l, item *r) {
+ if (!l || !r) t = l ? l : r;
+ else if (l->prior > r->prior) merge(l->r, l->r, r), t = l;
+ else merge(r->l, l, r->l), t = r;
+}
+
+void erase (item *t, int key) {
+ if (t->key == key) merge (t, t->l, t->r);
+ else erase(key < t->key ? t->l : t->r, key);
+}
+
+item *unite (item *l, item *r) {
+ if (!l || !r) return l ? l : r;
+ if (l->prior < r->prior) swap(l, r);
+ item * lt, rt;
+ split(r, l->key, lt, rt);
+ l->l = unite(l->l, lt);
+ l->r = unite(l->r, rt);
+ return l;
+}