for ( int i = 0; i < vect.size(); ++i) if ( vect[i] == value ) break; |
int dist = distance(col.begin(), find(col.begin(), col.end(), 5)); |
int dist; list<int>::iterator pos = find(col.begin(), col.end(), 5); if ( pos != col.end() ) dist = distance(col.begin(), pos); |
我想这还是比手写循环来的好些吧。
--------------------------------------------------------------------
max, min
这是有直接的算法支持的,当然复杂度是 O(n),用于未排序容器,如果是排序容器……老兄,那还需要什么算法么?
max_element(col.begin(), col.end()); min_element(col.begin(), col.end()); |
*max_element(col.begin(), col.end()); *min_element(col.begin(), col.end()); |
*max_element(col.begin(), col.end(), greater<int>()); // 返回最小值! *min_element(col.begin(), col.end(), greater<int>()); // 返回最大值 |
#include <iostream> using namespace boost; struct Person int main() col.push_back(Person("Tom", 10)); Person eldest = cout << eldest.name; |
输出是 Jerry ,这里用了 boost.bind ,原谅我不知道用 bind2nd, mem_fun 怎么写,我也不想知道……
-------------------------------------------------------------------------
copy_if
没错,STL 里面压根没有 copy_if ,这就是为什么我们需要这个:
template<typename InputIterator, typename OutputIterator, typename Predicate> OutputIterator copy_if( InputIterator begin, InputIterator end, OutputIterator destBegin, Predicate p) { while (begin != end) { if (p(*begin))*destBegin++ = *begin; ++begin; } return destBegin; } |
把它放在自己的工具箱里,是一个明智的选择。
------------------------------------------------------------------------
惯用手法:erase(iter++)
如果你要去除一个 list 中的某些元素,那可千万小心:(下面的代码是错的!!!)
#include <iostream> int main() for ( std::list<int>::iterator iter = lst.begin(); |