1
0
Fork 0

Update treap.hh

This commit is contained in:
Ariel 2024-01-30 22:07:43 +08:00 committed by GitHub
parent a24ae5adb6
commit fcc08e070f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ public:
void clear() { void clear() {
_size = root = cnt = 0; _size = root = cnt = 0;
fill(fhq.begin(), fhq.end(), {}); fill(fhq.begin(), fhq.end(), Node());
} }
void insert(value_type val) { void insert(value_type val) {