|
| 1 | +#ifndef TREES_TREAP_HPP |
| 2 | +#define TREES_TREAP_HPP |
| 3 | + |
| 4 | +#define PY_SSIZE_T_CLEAN |
| 5 | +#include <Python.h> |
| 6 | +#include <structmember.h> |
| 7 | +#include <cstdlib> |
| 8 | +#include "../../../utils/_backend/cpp/utils.hpp" |
| 9 | +#include "../../../utils/_backend/cpp/TreeNode.hpp" |
| 10 | +#include "../../../linear_data_structures/_backend/cpp/arrays/ArrayForTrees.hpp" |
| 11 | +#include "../../../linear_data_structures/_backend/cpp/arrays/DynamicOneDimensionalArray.hpp" |
| 12 | +#include "BinarySearchTree.hpp" |
| 13 | +#include "SelfBalancingBinaryTree.hpp" |
| 14 | +#include "CartesianTree.hpp" |
| 15 | + |
| 16 | +typedef struct { |
| 17 | + PyObject_HEAD |
| 18 | + CartesianTree* ct; |
| 19 | + ArrayForTrees* tree; |
| 20 | +} Treap; |
| 21 | + |
| 22 | +static void Treap_dealloc(Treap *self) { |
| 23 | + Py_TYPE(self)->tp_free(reinterpret_cast<PyObject*>(self)); |
| 24 | +} |
| 25 | + |
| 26 | +static PyObject* Treap___new__(PyTypeObject* type, PyObject *args, PyObject *kwds) { |
| 27 | + Treap *self; |
| 28 | + self = reinterpret_cast<Treap*>(type->tp_alloc(type, 0)); |
| 29 | + |
| 30 | + if (PyType_Ready(&CartesianTreeType) < 0) { // This has to be present to finalize a type object. This should be called on all type objects to finish their initialization. |
| 31 | + return NULL; |
| 32 | + } |
| 33 | + PyObject* p = CartesianTree___new__(&CartesianTreeType, args, kwds); |
| 34 | + self->ct = reinterpret_cast<CartesianTree*>(p); |
| 35 | + self->tree = reinterpret_cast<CartesianTree*>(p)->sbbt->bst->binary_tree->tree; |
| 36 | + |
| 37 | + return reinterpret_cast<PyObject*>(self); |
| 38 | +} |
| 39 | + |
| 40 | +static PyObject* Treap___str__(Treap *self) { |
| 41 | + return CartesianTree___str__(self->ct); |
| 42 | +} |
| 43 | + |
| 44 | +static PyObject* Treap_search(Treap* self, PyObject *args, PyObject *kwds) { |
| 45 | + return CartesianTree_search(self->ct, args, kwds); |
| 46 | +} |
| 47 | + |
| 48 | +static PyObject* Treap_delete(Treap* self, PyObject *args, PyObject *kwds) { |
| 49 | + return CartesianTree_delete(self->ct, args, kwds); |
| 50 | +} |
| 51 | + |
| 52 | +static PyObject* Treap_insert(Treap *self, PyObject* args) { |
| 53 | + Py_INCREF(Py_None); |
| 54 | + PyObject* key = Py_None; |
| 55 | + Py_INCREF(Py_None); |
| 56 | + PyObject* data = Py_None; |
| 57 | + if (!PyArg_ParseTuple(args, "O|O", &key, &data)) { // data is optional |
| 58 | + return NULL; |
| 59 | + } |
| 60 | + PyObject* priority = PyFloat_FromDouble(((double) rand() / (RAND_MAX))); |
| 61 | + |
| 62 | + return CartesianTree_insert(self->ct, Py_BuildValue("(OOO)", key, priority, data)); |
| 63 | +} |
| 64 | + |
| 65 | + |
| 66 | +static struct PyMethodDef Treap_PyMethodDef[] = { |
| 67 | + {"insert", (PyCFunction) Treap_insert, METH_VARARGS, NULL}, |
| 68 | + {"delete", (PyCFunction) Treap_delete, METH_VARARGS | METH_KEYWORDS, NULL}, |
| 69 | + {"search", (PyCFunction) Treap_search, METH_VARARGS | METH_KEYWORDS, NULL}, |
| 70 | + {NULL} /* Sentinel */ |
| 71 | +}; |
| 72 | + |
| 73 | +static PyMemberDef Treap_PyMemberDef[] = { |
| 74 | + {"tree", T_OBJECT_EX, offsetof(Treap, tree), 0, "tree"}, |
| 75 | + {NULL} /* Sentinel */ |
| 76 | +}; |
| 77 | + |
| 78 | + |
| 79 | +static PyTypeObject TreapType = { |
| 80 | + /* tp_name */ PyVarObject_HEAD_INIT(NULL, 0) "Treap", |
| 81 | + /* tp_basicsize */ sizeof(Treap), |
| 82 | + /* tp_itemsize */ 0, |
| 83 | + /* tp_dealloc */ (destructor) Treap_dealloc, |
| 84 | + /* tp_print */ 0, |
| 85 | + /* tp_getattr */ 0, |
| 86 | + /* tp_setattr */ 0, |
| 87 | + /* tp_reserved */ 0, |
| 88 | + /* tp_repr */ 0, |
| 89 | + /* tp_as_number */ 0, |
| 90 | + /* tp_as_sequence */ 0, |
| 91 | + /* tp_as_mapping */ 0, |
| 92 | + /* tp_hash */ 0, |
| 93 | + /* tp_call */ 0, |
| 94 | + /* tp_str */ (reprfunc) Treap___str__, |
| 95 | + /* tp_getattro */ 0, |
| 96 | + /* tp_setattro */ 0, |
| 97 | + /* tp_as_buffer */ 0, |
| 98 | + /* tp_flags */ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, |
| 99 | + /* tp_doc */ 0, |
| 100 | + /* tp_traverse */ 0, |
| 101 | + /* tp_clear */ 0, |
| 102 | + /* tp_richcompare */ 0, |
| 103 | + /* tp_weaklistoffset */ 0, |
| 104 | + /* tp_iter */ 0, |
| 105 | + /* tp_iternext */ 0, |
| 106 | + /* tp_methods */ Treap_PyMethodDef, |
| 107 | + /* tp_members */ Treap_PyMemberDef, |
| 108 | + /* tp_getset */ 0, |
| 109 | + /* tp_base */ &CartesianTreeType, |
| 110 | + /* tp_dict */ 0, |
| 111 | + /* tp_descr_get */ 0, |
| 112 | + /* tp_descr_set */ 0, |
| 113 | + /* tp_dictoffset */ 0, |
| 114 | + /* tp_init */ 0, |
| 115 | + /* tp_alloc */ 0, |
| 116 | + /* tp_new */ Treap___new__, |
| 117 | +}; |
| 118 | + |
| 119 | +#endif |
0 commit comments