std::experimental::boyer_moore_horspool_searcher, std::experimental::make_boyer_moore_horspool_searcher

来自cppreference.com
在标头 <experimental/functional> 定义
template< class RandomIt1,

          class Hash = std::hash<typename std::iterator_traits<RandomIt1>::value_type>,
          class BinaryPredicate = std::equal_to<> >

class boyer_moore_horspool_searcher;
(库基础 TS)

适用于 std::experimental::search 的搜索器,实现了 Boyer-Moore-Horspool 字符串搜索算法

boyer_moore_horspool_searcher可复制构造 (CopyConstructible) 可复制赋值 (CopyAssignable)

RandomIt1 必须满足老式随机访问迭代器 (LegacyRandomAccessIterator) 的规定。

成员函数

std::experimental::boyer_moore_horspool_searcher::boyer_moore_horspool_searcher

boyer_moore_horspool_searcher( RandomIt1 pat_first,

                               RandomIt1 pat_last,
                               Hash hf = Hash(),

                               BinaryPredicate pred = BinaryPredicate() );

创建 boyer_moore_horspool_searcher,存储 pat_firstpat_lasthfpred 的副本,设立所需的任何内部数据结构。

RandomIt1 的值类型必须为可默认构造 (DefaultConstructible) 可复制构造 (CopyConstructible) 可复制赋值 (CopyAssignable)

对于任意两个 std::iterator_traits<RandomIt1>::value_type 类型的值 AB,若 pred(A, B) == true,则 hf(A) == hf(B) 应当为 true

参数

pat_first, pat_last - 代表要搜索字符串的一对迭代器
hf - 用于散列字符串的元素的可调用对象
pred - 用于确定相等性的可调用对象

异常

以下操作抛出的任何异常

  • RandomIt1 的复制构造函数;
  • RandomIt1 的值类型的默认构造函数、复制构造函数或复制赋值运算符;或
  • BinaryPredicateHash 的复制构造函数或函数调用运算符。

如果无法分配内部数据结构所需的额外内存,则还会抛出 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 必须满足老式随机访问迭代器 (LegacyRandomAccessIterator) 的规定。

RandomIt1RandomIt2 必须具有相同的值类型。

参数

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

返回值

若模式 [pat_firstpat_last) 为空,则返回 first

否则,返回指向 [firstlast) 中的首个位置的迭代器,其中按 pred 定义比较等于 [pat_firstpat_last) 的子序列位于此,否则返回 last 的副本。

(C++17 前)

若模式 [pat_firstpat_last) 为空,则返回 make_pair(first, first)

否则,返回一对迭代器,指向 [firstlast) 中的首个位置和越过最末一个位置,其中按 pred 定义比较等于 [pat_firstpat_last) 的子序列位于此,否则返回 make_pair(last, last)

(C++17 起)

辅助函数

template< class RandomIt,

          class Hash = std::hash<typename std::iterator_traits<RandomIt>::value_type>,
          class BinaryPredicate = std::equal_to<> >
boyer_moore_horspool_searcher<RandomIt, Hash, BinaryPredicate>
    make_boyer_moore_horspool_searcher( RandomIt pat_first,
                                        RandomIt pat_last,
                                        Hash hf = Hash(),

                                        BinaryPredicate pred = BinaryPredicate() );
(库基础 TS)

利用模板实参推导创建 std::experimental::boyer_moore_horspool_searcher 的辅助函数。等价于 return boyer_moore_horspool_searcher<RandomIt, Hash, BinaryPredicate>(pat_first, pat_last, hf, pred);

参数

pat_first, pat_last - 代表要搜索字符串的一对迭代器
hf - 用于散列字符串的成员的可调用对象
pred - 用于确定相等性的可调用对象

返回值

从实参 pat_firstpat_lasthfpred 构造的 boyer_moore_horspool_searcher

示例

#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

参阅

搜索一个元素范围的首次出现
(函数模板)