Quantcast
Channel: Bartek's coding blog
Viewing all articles
Browse latest Browse all 325

Preprocessing Phase for C++17's Searchers

$
0
0

C++17 searchers

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?

Read more...

Viewing all articles
Browse latest Browse all 325

Trending Articles