I\'m looking for a data structure (or structures) that would allow me keep me an ordered list of integers, no duplicates, with indexes and values in the same range.
I ne
Use a vector for the array access.
Use a map as a search index to the subscript into the vector.