我发现Boost实现了KMP算法,我想将它与circular_buffer一起使用,但我无法将其与组件相匹配。任何有经验的人都可以告诉我如何做到这一点。
答案 0 :(得分:2)
你遇到了什么问题?
#include <boost/circular_buffer.hpp>
#include <boost/algorithm/searching/knuth_morris_pratt.hpp>
#include <string>
int main (int, char **) {
boost::circular_buffer<char> cb;
std::string s;
boost::algorithm::knuth_morris_pratt_search ( cb.begin (), cb.end (), s.begin (), s.end ());
}