N
nandor.sieben
Is there a well tested implementation of a sorted vector container
library to replace set containers?
I need only something very basic:
Use lower_bound and insert to add a new element if it's not there yet.
Use binary_search and erase to remove an element.
I am hoping that binary search performs faster than set::count.
Nandor
library to replace set containers?
I need only something very basic:
Use lower_bound and insert to add a new element if it's not there yet.
Use binary_search and erase to remove an element.
I am hoping that binary search performs faster than set::count.
Nandor