一.find运算
假设有一个int型的vector对象,名为vec,我们想知道其中是否包含某个特定值。
解决这个问题最简单的方法时使用标准库提供的find运算:
1 // value we'll look for 2 int search_value = 42; 3 4 //call find to see if that value is present 5 vector ::const_iterator result = find(vec.begin() , vec.end() , search_value); 6 7 //report the result 8 cout<<"The value "<
具体实现代码:
1 #include2 #include 3 #include 4 using namespace std; 5 6 int main() 7 { 8 // value we'll look for 9 int search_value = 42;10 int ival;11 vector vec;12 13 while(cin>>ival)14 vec.push_back(ival);15 16 cin.clear();17 18 //call find to see if that value is present19 vector ::const_iterator result = find(vec.begin() , vec.end() , search_value);20 21 //report the result22 cout<<"The value "< <<(result == vec.end() ? " is not present" : "is present")24 <
接下来再举一个例子:
1 #include2 #include 3 #include
4 5 using namespace std; 6 7 int main() 8 { 9 list ilist; 10 for (size_t i = 0; i < 10; ++i) 11 { 12 ilist.push_back(i+1); 13 } 14 15 ilist.push_back(10); 16 17 list ::iterator iLocation = find(ilist.begin(), ilist.end(), 10); //find操作查找等于10的元素,并返回指向该元素的迭代器,如果没有找到,返回指向集合最后一个元素的迭代器18 19 if (iLocation != ilist.end()) 20 { 21 cout << "找到元素 10" << endl; 22 } 23 24 cout << "前一个元素为:" << *(--iLocation) << endl; 25 26 return 0; 27 }
类似地,由于指针的行为与作用在内置数组上的迭代器一样,因此也可以使用find来搜索数组:
1 int ia[6] = {27 , 210 , 12 , 47 , 109 , 83};2 int search_value = 83;3 int *result = find(ia , ia + 6 , search_value);4 cout<<"The value "<<<(result == ia + 6 ? " is not present" : "is present")6 <
如果需要传递一个子区间,则传递指向这个子区间的第一个元素以及最后一个元素的下一位置的迭代器(或指针)。
例如,在下面对find函数的调用中,只搜索了ia[1]和ia[2]:
//only search elements ia[1] and ia[2]int *result = find(ia + 1 , ia + 3 , search_value);
二.find_first_of的使用
除了find之外,标准库还定义了其他一些更复杂的查找算法。当中的一部分类似string类的find操作,其中一个是find_first_of函数。
这个算法带有两对迭代器参数来标记两端元素范围:第一段范围内查找与第二段范围中任意元素匹配的元素,然后返回一个迭代器,指向第一个匹配的元素。如果找不到匹配元素,则返回第一个范围的end迭代器。
假设roster1和roster2是两个存放名字的list对象,可使用find_first_of统计有多少个名字同时出现在这两个列表中:
1 size_t cnt = 0; 2 list::iterator it = roster1.begin(); 3 4 // look in roster1 for any name also in roster2 5 while((it = find_first_of(it , roster1.end() , roster2.begin() , roster2.end())) != roster1.end()) 6 { 7 ++cnt; 8 // we got a match , increment it to look in the rest of roster1 9 ++it;10 }11 cout<<"Found "< <<" names on both rosters "<
调 用find_first_of查找roster2中的每个元素是否与第一个范围内的元素匹配,也就是在it到roster1.end()范围内查找一个元 素。该函数返回此范围内第一个同时存在于第二个范围中的元素。在while的第一次循环中,遍历整个roster1范围。第二次以及后续的循环迭代则只考 虑roster1中尚未匹配的部分。
循环条件检查find_first_of的返回值,判断是否找到匹配的名字。如果找到一个匹配,则使计 数器加1,同时给it加1,使它指向roster1中的下一个元素。很明显可知,当不再有任何匹配时,find_first_of返回 roster1.end(),完成统计。
find_first_of,带有两对迭代器参数。每对迭代器中,两个参数的类型必须精确匹配,但不要求两对之间的类型匹配。特别是,元素可存储在不同类型的序列中,只要这两个序列的元素可以比较即可。
在 上述程序中,roster1和roster2的类型不必精确匹配:roster1可以使list对象,而roster2则可以使vector对象、 deque对象或者是其他后面要学到的序列。只要这两个序列的的元素可使用相等(==)操作符进行比较即可。如果roster1是list< string>对象,则roster2可以使vector<char*>对象,因为string标准库为string对象与char* 对象定义了相等(==)操作符。
三.find_if的使用
find_if算法 是find的一个谓词判断版本,它利用返回布尔值的谓词判断pred,检查迭代器区间[first, last)上的每一个元素,如果迭代器iter满足pred(*iter) == true,表示找到元素并返回迭代器值iter;未找到元素,则返回last。
find_if :在序列中找符合某谓词的第一个元素。
函数原型为:
1 template2 InputIterator find_if( 3 InputIterator _First, 4 InputIterator _Last, 5 Predicate _Pred 6 );
举个例子说明如下:
1 #include2 #include 3 #include 4 5 using namespace std; 6 7 //谓词判断函数 divbyfive : 判断x是否能5整除 8 bool divbyfive(int x) 9 { 10 return x % 5 ? 0 : 1; 11 } 12 13 int main() 14 { 15 /* 16 //初始vector : 方式一 17 //使用下标方式来操作vector18 //vector随机访问方便,但插入、删除操作效率非常低19 vector iVect(20); 20 21 for(size_t i = 0; i < iVect.size(); ++i) //注意:size_t22 { 23 iVect[i] = (i+1) * (i+3); 24 } 25 26 */27 //初始vector :方式二28 vector iVect;29 for(vector ::size_type i = 0 ; i != 20 ; ++i)30 iVect.push_back((i+1) * (i + 3));31 32 33 //输出vector里的元素34 for(vector ::iterator iter = iVect.begin() ; iter != iVect.end() ; ++iter)35 cout<<*iter<<" ";36 cout<