2024-03-19 16:10:48 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "finder.h"
|
|
|
|
|
2024-03-20 12:25:28 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
using std::vector;
|
|
|
|
|
2024-03-19 16:10:48 +00:00
|
|
|
class LinearFinder : public Finder {
|
|
|
|
private:
|
2024-03-20 19:51:16 +00:00
|
|
|
const vector<std::string> &word_list_;
|
2024-03-19 16:10:48 +00:00
|
|
|
|
|
|
|
public:
|
2024-03-20 19:51:16 +00:00
|
|
|
LinearFinder(const vector<std::string> &word_list);
|
|
|
|
std::forward_list<const std::string *>
|
|
|
|
find_prefix(std::string_view search_term) const override;
|
2024-03-19 16:10:48 +00:00
|
|
|
};
|