命名空间
变体
操作

std::default_searcher

来自 cppreference.com
< cpp‎ | utility‎ | functional
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三向比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
函数对象
函数调用
(C++17)(C++23)
标识函数对象
(C++20)
透明运算符包装器
(C++14)
(C++14)
(C++14)
(C++14)  
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)

否定器
(C++17)
搜索器
default_searcher
(C++17)
旧绑定器和适配器
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)  
(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
(直到 C++17*)(直到 C++17*)
(直到 C++17*)(直到 C++17*)

(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
 
在头文件中定义 <functional>
template< class ForwardIt, class BinaryPredicate = std::equal_to<> >
class default_searcher;
(自 C++17 起)

一个适合与 Searcher 的重载版本一起使用,它将搜索操作委托给 C++17 标准库之前的 std::search。的重载版本 std::search.

std::default_searcherCopyConstructibleCopyAssignable.

内容

[编辑] 成员函数

std::default_searcher::default_searcher

default_searcher( ForwardIt pat_first,

                  ForwardIt pat_last,

                  BinaryPredicate pred = BinaryPredicate() );
(自 C++17 起)
(自 C++20 起为 constexpr)

通过存储 pat_firstpat_lastpred 的副本来构造 std::default_searcher

参数

pat_first, pat_last - 一对迭代器,指定要搜索的字符串
pred - 一个可调用对象,用于确定相等性

异常

BinaryPredicateForwardIt 的复制构造函数抛出的任何异常。

std::default_searcher::operator()

template< class ForwardIt2 >

std::pair<ForwardIt2, ForwardIt2>

    operator()( ForwardIt2 first, ForwardIt2 last ) const;
(自 C++17 起)
(自 C++20 起为 constexpr)

std::search 的 Searcher 重载调用来使用此搜索器执行搜索的成员函数。

返回一对迭代器 i, j,其中 istd::search(first, last, pat_first, pat_last, pred),而 jstd::next(i, std::distance(pat_first, pat_last)),除非 std::search 返回 last(没有匹配项),在这种情况下 j 也等于 last

参数

first, last - 一对迭代器,指定要检查的字符串

返回值

一对迭代器,指向 `[`firstlast) 中的第一个位置和最后一个位置后的位置,其中包含与 `[`pat_firstpat_last) 相等的子序列,该子序列由 pred 定义,否则为一对 last 的副本。

[编辑] 示例

#include <algorithm>
#include <functional>
#include <iomanip>
#include <iostream>
#include <string_view>
 
int main()
{
    constexpr std::string_view in =
        "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed "
        "do eiusmod tempor incididunt ut labore et dolore magna aliqua";
 
    const std::string_view needle{"pisci"};
 
    auto it = std::search(in.begin(), in.end(),
                  std::default_searcher(
                      needle.begin(), needle.end()));
    if (it != in.end())
        std::cout << "The string " << std::quoted(needle) << " found at offset "
                  << it - in.begin() << '\n';
    else
        std::cout << "The string " << std::quoted(needle) << " not found\n";
}

输出

The string "pisci" found at offset 43

[编辑] 参见

搜索元素范围的第一个出现位置
(函数模板) [编辑]
Boyer-Moore 搜索算法实现
(类模板) [编辑]
Boyer-Moore-Horspool 搜索算法实现
(类模板) [编辑]