C++ STL算法系列2---find ,find_first_of , find_if , adjacent_find的使用
一.find运算假设有一个int型的vector对象,名为vec,我们想知道其中是否包含某个特定值。解决这个问题最简单的方法时使用标准库提供的find运算://valuewe'lllookforintsearch_value=42;//callfindtoseeifthatvalueispresentvector::const_iteratorresult=find(vec.begin(),vec