TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
|
A structure representing all the data we need to search the preprocessed pattern in text. More...
Public Attributes | |
std::string | pat |
std::vector< size_t > | bad_char |
std::vector< size_t > | good_suffix |
A structure representing all the data we need to search the preprocessed pattern in text.
Definition at line 70 of file boyer_moore.cpp.
std::vector<size_t> strings::boyer_moore::pattern::bad_char |
bad char table used in Bad Character Heuristic
Definition at line 74 of file boyer_moore.cpp.
std::vector<size_t> strings::boyer_moore::pattern::good_suffix |
good suffix table used for Good Suffix heuristic
Definition at line 78 of file boyer_moore.cpp.
std::string strings::boyer_moore::pattern::pat |
Definition at line 71 of file boyer_moore.cpp.