VectorSearch/lib_vector_search/include/tree_finder.h

34 lines
660 B
C
Raw Normal View History

2024-03-20 14:05:25 +00:00
#pragma once
#include "finder.h"
2024-03-21 07:55:44 +00:00
#include "word_list.h"
2024-03-20 14:05:25 +00:00
#include <map>
class SearchTreeNode {
private:
WordRefList words_;
2024-03-20 14:05:25 +00:00
std::map<const char, SearchTreeNode> children_;
public:
void insert(std::string_view partial_word, const std::string *original_word);
2024-03-20 14:05:25 +00:00
const SearchTreeNode *find(std::string_view search_term) const;
WordRefList words() const;
2024-03-20 14:05:25 +00:00
};
class SearchTree : public SearchTreeNode {
public:
2024-03-21 07:55:44 +00:00
SearchTree(const WordList &word_list);
2024-03-20 14:05:25 +00:00
};
class TreeFinder : public Finder {
private:
SearchTree search_tree_;
public:
2024-03-21 07:55:44 +00:00
TreeFinder(const WordList &word_list);
2024-03-20 14:05:25 +00:00
WordRefList find_prefix(std::string_view search_term) const override;
2024-03-20 14:05:25 +00:00
};