feat: add tree-finder
parent
1ab711f81c
commit
bdc720694f
|
@ -5,6 +5,7 @@
|
||||||
#include "linear_finder.h"
|
#include "linear_finder.h"
|
||||||
#include "parallel_finder.h"
|
#include "parallel_finder.h"
|
||||||
#include "timer.h"
|
#include "timer.h"
|
||||||
|
#include "tree_finder.h"
|
||||||
#include "word_list_generator.h"
|
#include "word_list_generator.h"
|
||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
@ -26,6 +27,7 @@ MainWindow::~MainWindow() { delete ui; }
|
||||||
void MainWindow::setupAlgorithmSelector() {
|
void MainWindow::setupAlgorithmSelector() {
|
||||||
search_algorithms_.appendRow(new QStandardItem("Linear search"));
|
search_algorithms_.appendRow(new QStandardItem("Linear search"));
|
||||||
search_algorithms_.appendRow(new QStandardItem("Parallel search"));
|
search_algorithms_.appendRow(new QStandardItem("Parallel search"));
|
||||||
|
search_algorithms_.appendRow(new QStandardItem("Tree search"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::generateWordList() {
|
void MainWindow::generateWordList() {
|
||||||
|
@ -68,6 +70,8 @@ std::unique_ptr<Finder> MainWindow::createSelectedFinder() const {
|
||||||
case 1:
|
case 1:
|
||||||
return std::make_unique<ParallelFinder>(
|
return std::make_unique<ParallelFinder>(
|
||||||
word_list_, std::thread::hardware_concurrency());
|
word_list_, std::thread::hardware_concurrency());
|
||||||
|
case 2:
|
||||||
|
return std::make_unique<TreeFinder>(word_list_);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,18 @@ project(
|
||||||
VERSION 0.1.0
|
VERSION 0.1.0
|
||||||
LANGUAGES CXX)
|
LANGUAGES CXX)
|
||||||
|
|
||||||
add_library(vector_search STATIC src/word_list_generator.cpp src/timer.cpp
|
add_library(
|
||||||
src/linear_finder.cpp src/parallel_finder.cpp)
|
vector_search STATIC
|
||||||
|
src/word_list_generator.cpp
|
||||||
|
include/word_list_generator.h
|
||||||
|
src/timer.cpp
|
||||||
|
include/timer.h
|
||||||
|
src/linear_finder.cpp
|
||||||
|
include/linear_finder.h
|
||||||
|
src/parallel_finder.cpp
|
||||||
|
include/parallel_finder.h
|
||||||
|
src/tree_finder.cpp
|
||||||
|
include/tree_finder.h)
|
||||||
|
|
||||||
target_include_directories(vector_search PUBLIC ${PROJECT_SOURCE_DIR}/include)
|
target_include_directories(vector_search PUBLIC ${PROJECT_SOURCE_DIR}/include)
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "finder.h"
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
class SearchTreeNode {
|
||||||
|
private:
|
||||||
|
std::forward_list<const std::string *> words_;
|
||||||
|
std::map<const char, SearchTreeNode> children_;
|
||||||
|
|
||||||
|
public:
|
||||||
|
void insert(std::string_view partial_word, const string *original_word);
|
||||||
|
const SearchTreeNode *find(std::string_view search_term) const;
|
||||||
|
|
||||||
|
std::forward_list<const std::string *> words() const;
|
||||||
|
};
|
||||||
|
|
||||||
|
class SearchTree : public SearchTreeNode {
|
||||||
|
public:
|
||||||
|
SearchTree(const std::vector<std::string> &word_list);
|
||||||
|
};
|
||||||
|
|
||||||
|
class TreeFinder : public Finder {
|
||||||
|
private:
|
||||||
|
SearchTree search_tree_;
|
||||||
|
|
||||||
|
public:
|
||||||
|
TreeFinder(const std::vector<string> &word_list);
|
||||||
|
|
||||||
|
virtual std::forward_list<const std::string *>
|
||||||
|
find_prefix(std::string_view search_term) const override;
|
||||||
|
};
|
|
@ -0,0 +1,53 @@
|
||||||
|
#include "tree_finder.h"
|
||||||
|
|
||||||
|
void SearchTreeNode::insert(std::string_view partial_word,
|
||||||
|
const string *original_word) {
|
||||||
|
if (partial_word.empty()) {
|
||||||
|
words_.push_front(original_word);
|
||||||
|
} else {
|
||||||
|
children_[partial_word.front()].insert(
|
||||||
|
std::string_view(partial_word).substr(1, partial_word.length()),
|
||||||
|
original_word);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const SearchTreeNode *SearchTreeNode::find(std::string_view search_term) const {
|
||||||
|
if (search_term.empty()) {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto child = children_.find(search_term.front());
|
||||||
|
if (child != children_.cend()) {
|
||||||
|
return child->second.find(search_term.substr(1, search_term.length()));
|
||||||
|
}
|
||||||
|
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::forward_list<const std::string *> SearchTreeNode::words() const {
|
||||||
|
std::forward_list<const std::string *> results(words_);
|
||||||
|
for (const auto &child : children_) {
|
||||||
|
results.merge(child.second.words());
|
||||||
|
}
|
||||||
|
|
||||||
|
return results;
|
||||||
|
};
|
||||||
|
|
||||||
|
SearchTree::SearchTree(const std::vector<std::string> &word_list) {
|
||||||
|
for (const auto &word : word_list) {
|
||||||
|
insert(std::string_view(word), &word);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
TreeFinder::TreeFinder(const std::vector<string> &word_list)
|
||||||
|
: search_tree_(word_list) {}
|
||||||
|
|
||||||
|
std::forward_list<const std::string *>
|
||||||
|
TreeFinder::find_prefix(std::string_view search_term) const {
|
||||||
|
const auto *result_node = search_tree_.find(search_term);
|
||||||
|
if (result_node == nullptr) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
return result_node->words();
|
||||||
|
}
|
|
@ -1,6 +1,7 @@
|
||||||
#include "linear_finder.h"
|
#include "linear_finder.h"
|
||||||
#include "parallel_finder.h"
|
#include "parallel_finder.h"
|
||||||
#include "timer.h"
|
#include "timer.h"
|
||||||
|
#include "tree_finder.h"
|
||||||
#include "word_list_generator.h"
|
#include "word_list_generator.h"
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
@ -26,9 +27,7 @@ vector<string> generate_word_list() {
|
||||||
void test_linear_finder(const vector<string> &word_list) {
|
void test_linear_finder(const vector<string> &word_list) {
|
||||||
cout << "\nrunning linear finder" << endl;
|
cout << "\nrunning linear finder" << endl;
|
||||||
|
|
||||||
Timer constructor_timer;
|
|
||||||
LinearFinder linear_finder(word_list);
|
LinearFinder linear_finder(word_list);
|
||||||
constructor_timer.stop();
|
|
||||||
|
|
||||||
Timer find_timer;
|
Timer find_timer;
|
||||||
auto result = linear_finder.find_prefix("ABCD");
|
auto result = linear_finder.find_prefix("ABCD");
|
||||||
|
@ -46,9 +45,7 @@ void test_parallel_finder(const vector<string> &word_list) {
|
||||||
|
|
||||||
cout << "using " << thread_count << " threads" << endl;
|
cout << "using " << thread_count << " threads" << endl;
|
||||||
|
|
||||||
Timer constructor_timer;
|
|
||||||
ParallelFinder parallel_finder(word_list, thread_count);
|
ParallelFinder parallel_finder(word_list, thread_count);
|
||||||
constructor_timer.stop();
|
|
||||||
|
|
||||||
Timer find_timer;
|
Timer find_timer;
|
||||||
auto result = parallel_finder.find_prefix("ABCD");
|
auto result = parallel_finder.find_prefix("ABCD");
|
||||||
|
@ -59,6 +56,24 @@ void test_parallel_finder(const vector<string> &word_list) {
|
||||||
<< " element(s) long" << endl;
|
<< " element(s) long" << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void test_tree_finder(const vector<string> &word_list) {
|
||||||
|
cout << "\nrunning tree finder" << endl;
|
||||||
|
|
||||||
|
Timer constructor_timer;
|
||||||
|
TreeFinder tree_finder(word_list);
|
||||||
|
constructor_timer.stop();
|
||||||
|
|
||||||
|
cout << "tree finder constructor took " << constructor_timer << endl;
|
||||||
|
|
||||||
|
Timer find_timer;
|
||||||
|
auto result = tree_finder.find_prefix("ABCD");
|
||||||
|
find_timer.stop();
|
||||||
|
|
||||||
|
cout << "tree finder took " << find_timer << endl;
|
||||||
|
cout << "result list is " << std::distance(result.cbegin(), result.cend())
|
||||||
|
<< " element(s) long" << endl;
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
cout << "\n== VectorSearch ==" << endl;
|
cout << "\n== VectorSearch ==" << endl;
|
||||||
|
|
||||||
|
@ -66,6 +81,7 @@ int main(int argc, char *argv[]) {
|
||||||
|
|
||||||
test_linear_finder(word_list);
|
test_linear_finder(word_list);
|
||||||
test_parallel_finder(word_list);
|
test_parallel_finder(word_list);
|
||||||
|
test_tree_finder(word_list);
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue