算法之旅,直奔<algorithm>之十七 find_first_of

35 篇文章 1 订阅
29 篇文章 0 订阅

find_first_of(vs2010)

  • 引言
这是我学习总结 <algorithm>的第十七篇,find_first_of是匹配的一个函数。<algorithm>是c++的一个头文件的名字,里面集成了好多好多的函数。故取之共享于大家,方便大家了解。
  • 作用
find_first_of 的作用是拿指定数据在原数据中去匹配,返回匹配数据在原数据中的首位置。
  • 原型
template<class InputIterator, class ForwardIterator>
  InputIterator find_first_of ( InputIterator first1, InputIterator last1,
                                ForwardIterator first2, ForwardIterator last2)
{
  while (first1!=last1) {
    for (ForwardIterator it=first2; it!=last2; ++it) {
      if (*it==*first1)          // or: if (pred(*it,*first)) for version (2)
        return first1;
    }
    ++first1;
  }
  return last1;
}
  • 实验
原数据如下

匹配数据

返回第一个‘A’的位置。
  • 代码
test.cpp
#include <iostream>     // std::cout
#include <algorithm>    // std::find_first_of
#include <vector>       // std::vector
#include <cctype>       // std::tolower

bool comp_case_insensitive (char c1, char c2) 
{
	return (std::tolower(c1)==std::tolower(c2));
}

int main () 
{
	int mychars[] = {'a','b','c','A','B','C'};
	std::vector<char> haystack ( mychars,mychars+6 );
	std::vector<char>::iterator it;

	int needle[] = {'A','B','C'};

	// using default comparison:
	it = find_first_of (haystack.begin(), haystack.end(), needle, needle+3);

	if (it!=haystack.end())
		std::cout << "The first match is: " << *it << '\n';

	// using predicate comparison:
	it = find_first_of (haystack.begin(), haystack.end(),
		needle, needle+3, comp_case_insensitive);

	if (it!=haystack.end())
		std::cout << "The first match is: " << *it << '\n';

	system("pause");
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值