C++非修改序列操作—查找(find;fnd_first_of;find_if;find_if_not;find_end;adjacent_if)
一、find头文件algorithmtemplateInputIteratorfind(InputIteratorfirst,InputIteratorlast,constT&val);查找范围内的值返回范围[first,last]中与val相等的第一个元素的迭代器。如果找不到这样的元素,则该函数返回最后。该函数使用operator==将各个元素与val进行比较。此函数模板的行为等效于:templ