You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Other programming languages support high-level APIs like
Get next smaller value (or item)
Get floor value (or item)
Get ceil value (or item)
Get next larger value (or item)
In Tree data structure.
We can achieve this by using bisect method + index range check, but providing higher-level API would help users to avoid writing wrapper code every time.
Motivation
Other programming languages support high-level APIs like
In Tree data structure.
We can achieve this by using bisect method + index range check, but providing higher-level API would help users to avoid writing wrapper code every time.
API Definition
SortedList
SortedSet
SortedDict
Prototype Code (Implementation / Tests)
P.S