标签:
set
set<int> s;
s.insert(x);
int x = *(--s.lower_bound(x));
vector
int pos = lower_bound(v.begin(), v.end(), x) - v.begin();
STL的使用。。备忘
原文地址:http://www.cnblogs.com/usedrosee/p/4707114.html