Learn Before
Concept
Treap
A treap is a data structure that combines the properties of a binary search tree and a heap. Each node in a treap contains a data key (organized according to the binary search tree property) and a priority value (organized according to the heap property). This structure allows operations to be performed in time.
0
1
Updated 2026-06-30
Contributors are:
Who are from:
Tags
Python Programming Language
Data Science