名前空間
変種
操作

std::boyer_moore_searcher

From 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++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)

否定子 (Negators)
(C++17)
サーチャー
boyer_moore_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 RandomIt1,

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

class boyer_moore_searcher;
(C++17以降)

Searcherstd::search オーバーロードで使用するのに適したセッチャーで、Boyer-Moore文字列検索アルゴリズムを実装しています。

std::boyer_moore_searcher は、CopyConstructible および CopyAssignable です。

RandomIt1LegacyRandomAccessIteratorの要件を満たす必要があります。

目次

[edit] メンバ関数

std::boyer_moore_searcher::boyer_moore_searcher

boyer_moore_searcher( RandomIt1 pat_first,

                      RandomIt1 pat_last,
                      Hash hf = Hash(),

                      BinaryPredicate pred = BinaryPredicate() );

pat_first, pat_last, hf, および pred のコピーを格納し、必要な内部データ構造をセットアップして、std::boyer_moore_searcher を構築します。

RandomIt1のvalue typeは、DefaultConstructibleCopyConstructible、およびCopyAssignableである必要があります。

std::iterator_traits<RandomIt1>::value_type の任意の2つの値 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::boyer_moore_searcher::operator()

template< class RandomIt2 >
std::pair<RandomIt2, RandomIt2> operator()( RandomIt2 first, RandomIt2 last ) const;
(C++17以降)

このセッチャーを使用して検索を実行するために、std::search の Searcher オーバーロードによって呼び出されるメンバ関数です。RandomIt2LegacyRandomAccessIterator の要件を満たす必要があります。

RandomIt1RandomIt2は同じvalue typeを持つ必要があります。

パラメータ

first, last - 検査対象の文字列を指定するイテレータのペア

戻り値

パターン [pat_firstpat_last) が空の場合、std::make_pair(first, first) を返します。

それ以外の場合、pred によって定義されるように、[pat_firstpat_last) と比較して等しい部分シーケンスが配置される、[firstlast) 内の最初の位置と最後の次の位置へのイテレータのペア、またはそれ以外の場合は std::make_pair(last, last) を返します。

[edit] 注記

機能テストマクロ 規格 機能
__cpp_lib_boyer_moore_searcher 201603L (C++17) 検索子

[edit]

#include <algorithm>
#include <functional>
#include <iomanip>
#include <iostream>
#include <string_view>
 
int main()
{
    constexpr std::string_view haystack =
        "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"};
 
    if (const auto it = std::search(haystack.begin(), haystack.end(),
            std::boyer_moore_searcher(needle.begin(), needle.end()));
        it != haystack.end()
    )
        std::cout << "The string " << std::quoted(needle) << " found at offset "
                  << it - haystack.begin() << '\n';
    else
        std::cout << "The string " << std::quoted(needle) << " not found\n";
}

出力

The string "pisci" found at offset 43

[edit] 関連項目

要素の範囲の最初の出現を検索する
(関数テンプレート) [編集]
標準C++ライブラリの探索アルゴリズム実装
(クラステンプレート) [編集]
ボイヤー・ムーア・ホースプール法探索アルゴリズム実装
(クラステンプレート) [編集]
English 日本語 中文(简体) 中文(繁體)