Searchers from C++17 are a new way to perform efficient pattern lookups. The new standard offers three searchers: default_searcher
, boyer_moore_searcher
and boyer_moore_horspool_searcher
. The last two implements algorithms that require some additional preprocessing for the input pattern. Is there a chance to separate preprocessing time from the search time?
↧
Preprocessing Phase for C++17's Searchers
↧