summaryrefslogtreecommitdiff
path: root/datastructures
diff options
context:
space:
mode:
Diffstat (limited to 'datastructures')
-rw-r--r--datastructures/datastructures.tex5
-rw-r--r--datastructures/treap.cpp39
2 files changed, 43 insertions, 1 deletions
diff --git a/datastructures/datastructures.tex b/datastructures/datastructures.tex
index 9018cd5..7659a7e 100644
--- a/datastructures/datastructures.tex
+++ b/datastructures/datastructures.tex
@@ -18,5 +18,8 @@ Dazu: Offset in den inneren Knoten des Baums speichern.
\subsection{STL-Tree}
\lstinputlisting{datastructures/stlTree.cpp}
-\subsection{STL-Rope}
+\subsection{STL-Rope (Implicit Cartesian Tree)}
\lstinputlisting{datastructures/stlRope.cpp}
+
+\subsection{Treap (Cartesian Tree)}
+\lstinputlisting{datastructures/treap.cpp}
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;
+}