Introduction
Suppose we have a set of elements , and every element is bounded by . In other words, for every , we have
There are many ways to store such a set, for example:
std::arraystd::vectorstd::set
Each of them has its own advantages. For example, some allow fast insertion and deletion, while others support operations like lower_bound in .
