std::experimental::boyer_moore_horspool_searcher, std::experimental::make_boyer_moore_horspool_searcher
定义在头文件 <experimental/functional> 中 |
||
template< class RandomIt1, class Hash = std::hash<typename std::iterator_traits<RandomIt1>::value_type>, |
(库基础 TS) | |
一个适合与 std::experimental::search 一起使用的搜索器,它实现了 Boyer-Moore-Horspool 字符串搜索算法.
boyer_moore_horspool_searcher
是 可复制构造 且 可复制赋值.
RandomIt1
必须满足 传统随机访问迭代器 的要求。
内容 |
[编辑] 成员函数
std::experimental::boyer_moore_horspool_searcher::boyer_moore_horspool_searcher
boyer_moore_horspool_searcher( RandomIt1 pat_first, RandomIt1 pat_last, |
||
通过存储 pat_first、pat_last、hf 和 pred 的副本来构造一个 boyer_moore_horspool_searcher
,并设置任何必要的内部数据结构。
RandomIt1
的值类型必须是 可默认构造、可复制构造 且 可复制赋值.
对于类型 std::iterator_traits<RandomIt1>::value_type 的任何两个值 A
和 B
,如果 pred(A, B) == true,则 hf(A) == hf(B) 应为 true.
参数
pat_first, pat_last | - | 一对迭代器,指定要搜索的字符串 |
hf | - | 一个可调用对象,用于对字符串的元素进行哈希运算 |
pred | - | 一个可调用对象,用于确定相等性 |
异常
任何由以下内容引发的异常:
RandomIt1
的复制构造函数;RandomIt1
的值类型的默认构造函数、复制构造函数或复制赋值运算符;或BinaryPredicate
或Hash
的复制构造函数或函数调用运算符。
如果内部数据结构所需的额外内存无法分配,也可能抛出 std::bad_alloc。
std::experimental::boyer_moore_horspool_searcher::operator()
template< class RandomIt2 > RandomIt2 operator()( RandomIt2 first, RandomIt2 last ) const; |
(直到 C++17) | |
template< class RandomIt2 > std::pair<RandomIt2,RandomIt2> operator()( RandomIt2 first, RandomIt2 last ) const; |
(从 C++17 开始) | |
由 std::experimental::search 调用的成员函数,以使用此搜索器执行搜索。RandomIt2
必须满足 传统随机访问迭代器 的要求。
RandomIt1
和 RandomIt2
必须具有相同的值类型。
参数
first, last | - | 一对迭代器,指定要检查的字符串 |
返回值
如果模式 否则,返回 |
(直到 C++17) |
如果模式 否则,返回一对迭代器,指向 |
(从 C++17 开始) |
[edit] 辅助函数
template< class RandomIt, class Hash = std::hash<typename std::iterator_traits<RandomIt>::value_type>, |
(库基础 TS) | |
辅助函数,使用模板参数推断构建一个std::experimental::boyer_moore_horspool_searcher
。等效于return boyer_moore_horspool_searcher<RandomIt, Hash, BinaryPredicate>(pat_first, pat_last, hf, pred);
[edit] 参数
pat_first, pat_last | - | 一对迭代器,指定要搜索的字符串 |
hf | - | 一个可调用对象,用于对字符串的元素进行哈希运算 |
pred | - | 一个可调用对象,用于确定相等性 |
[edit] 返回值
使用参数pat_first、pat_last、hf和pred构建的boyer_moore_horspool_searcher
。
[edit] 示例
#include <experimental/algorithm> #include <experimental/functional> #include <iostream> #include <string> int main() { std::string in = "Lorem ipsum dolor sit amet, consectetur adipiscing elit," " sed do eiusmod tempor incididunt ut labore et dolore magna aliqua"; std::string needle = "pisci"; auto it = std::experimental::search(in.begin(), in.end(), std::experimental::make_boyer_moore_horspool_searcher( needle.begin(), needle.end())); if (it != in.end()) std::cout << "The string " << needle << " found at offset " << it - in.begin() << '\n'; else std::cout << "The string " << needle << " not found\n"; }
输出
The string pisci found at offset 43
[edit] 参见
搜索一组元素的第一个出现位置 (函数模板) |