Need to define the < operator:
- Define the '<' operator in the class:
struct Myobject {
int val;
int pos;
// asending order
bool operator < (const Myobject& obj) const {
return val < obj.val;
}
}- Define a functor as argument of the set
struct Comparator {
bool operator() (const Myobject& obj1, const Myobject& obj2) const {
return obj1.val < obj2.val;
}
}
set<Myobject,Comparator> mySet;lower_bound(x): iterator to first element >= x upper_bound(x): iterator to first element > x if the element do not exist, return end()
auto it = map.lower_bound(x);
if(it==map.end()) cout<<"Not Exist";// assume x is the integer
auto it = map.upper_bound(x);
if(it==map.end()) cout<<"Not Exist";auto it = map.upper_bound(x);
if(it==map.begin()) cout<<"Not Exist";
--it; auto it = map.lower_bound(x);
if(it==map.begin()) cout<<"Not Exist";
--it;