diff options
Diffstat (limited to 'datastructures/treap.cpp')
| -rw-r--r-- | datastructures/treap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/datastructures/treap.cpp b/datastructures/treap.cpp index eef56b4..c96e36a 100644 --- a/datastructures/treap.cpp +++ b/datastructures/treap.cpp @@ -1,6 +1,6 @@ struct node { int key, prio, left, right, size; - node(int key, int prio) : key(key), prio(prio), left(-1), + node(int key, int prio) : key(key), prio(prio), left(-1), right(-1), size(1) {}; }; |
