Compare commits
No commits in common. "9fd306204145b46a808304254ffc11f2b2e29266" and "c191e7bd6a6dd90a386dee870bffdc565d303df0" have entirely different histories.
9fd3062041
...
c191e7bd6a
|
@ -5,11 +5,10 @@
|
||||||
#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 <thread>
|
#include <thread>
|
||||||
|
#include <sstream>
|
||||||
|
|
||||||
MainWindow::MainWindow(QWidget *parent)
|
MainWindow::MainWindow(QWidget *parent)
|
||||||
: QMainWindow(parent), ui(new Ui::MainWindow) {
|
: QMainWindow(parent), ui(new Ui::MainWindow) {
|
||||||
|
@ -27,7 +26,6 @@ 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() {
|
||||||
|
@ -38,6 +36,13 @@ void MainWindow::generateWordList() {
|
||||||
std::stringstream status_message;
|
std::stringstream status_message;
|
||||||
status_message << "generated " << word_list_.size() << " words in " << timer;
|
status_message << "generated " << word_list_.size() << " words in " << timer;
|
||||||
ui->mainStatusBar->showMessage(QString::fromStdString(status_message.str()));
|
ui->mainStatusBar->showMessage(QString::fromStdString(status_message.str()));
|
||||||
|
|
||||||
|
QStringList words;
|
||||||
|
for (const auto &word : word_list_) {
|
||||||
|
words.append(QString::fromStdString(word));
|
||||||
|
}
|
||||||
|
|
||||||
|
result_model_.setStringList(words);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::search(const QString &search_term) {
|
void MainWindow::search(const QString &search_term) {
|
||||||
|
@ -48,37 +53,32 @@ void MainWindow::search(const QString &search_term) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Timer timer;
|
Timer timer;
|
||||||
const auto results = finder_->find_prefix(search_term.toStdString());
|
const auto finder = createSelectedFinder();
|
||||||
|
const auto results = finder->find_prefix(search_term.toStdString());
|
||||||
timer.stop();
|
timer.stop();
|
||||||
|
|
||||||
std::stringstream status_message;
|
std::stringstream status_message;
|
||||||
status_message << "search took " << timer << ", found "
|
status_message << "search took " << timer << ", found " << results.size()
|
||||||
<< std::distance(results.begin(), results.end()) << " results";
|
<< " results";
|
||||||
ui->mainStatusBar->showMessage(QString::fromStdString(status_message.str()));
|
ui->mainStatusBar->showMessage(QString::fromStdString(status_message.str()));
|
||||||
|
|
||||||
showResults(results);
|
showResults(results);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::createSelectedFinder() {
|
std::unique_ptr<Finder> MainWindow::createSelectedFinder() const {
|
||||||
auto selectedFinder = ui->searchAlgorithmSelector->currentIndex();
|
auto selectedFinder = ui->searchAlgorithmSelector->currentIndex();
|
||||||
|
|
||||||
switch (selectedFinder) {
|
switch (selectedFinder) {
|
||||||
case 0:
|
case 0:
|
||||||
default:
|
default:
|
||||||
finder_ = std::make_unique<LinearFinder>(word_list_);
|
return std::make_unique<LinearFinder>(word_list_);
|
||||||
break;
|
|
||||||
case 1:
|
case 1:
|
||||||
finder_ = std::make_unique<ParallelFinder>(
|
return std::make_unique<ParallelFinder>(
|
||||||
word_list_, std::thread::hardware_concurrency());
|
word_list_, std::thread::hardware_concurrency());
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
finder_ = std::make_unique<TreeFinder>(word_list_);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::showResults(
|
void MainWindow::showResults(const std::vector<const std::string *> &results) {
|
||||||
const std::forward_list<const std::string *> &results) {
|
|
||||||
QStringList ui_results;
|
QStringList ui_results;
|
||||||
for (auto word : results) {
|
for (auto word : results) {
|
||||||
ui_results.append(QString::fromStdString(*word));
|
ui_results.append(QString::fromStdString(*word));
|
||||||
|
@ -92,6 +92,5 @@ void MainWindow::on_searchInput_textChanged(const QString &search_term) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_searchAlgorithmSelector_currentIndexChanged(int) {
|
void MainWindow::on_searchAlgorithmSelector_currentIndexChanged(int) {
|
||||||
createSelectedFinder();
|
|
||||||
search(ui->searchInput->displayText());
|
search(ui->searchInput->displayText());
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,6 @@ private:
|
||||||
std::vector<std::string> word_list_;
|
std::vector<std::string> word_list_;
|
||||||
QStringListModel result_model_;
|
QStringListModel result_model_;
|
||||||
QStandardItemModel search_algorithms_;
|
QStandardItemModel search_algorithms_;
|
||||||
std::unique_ptr<Finder> finder_;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
MainWindow(QWidget *parent = nullptr);
|
MainWindow(QWidget *parent = nullptr);
|
||||||
|
@ -29,8 +28,8 @@ private:
|
||||||
void setupAlgorithmSelector();
|
void setupAlgorithmSelector();
|
||||||
void generateWordList();
|
void generateWordList();
|
||||||
void search(const QString &search_term);
|
void search(const QString &search_term);
|
||||||
void createSelectedFinder();
|
std::unique_ptr<Finder> createSelectedFinder() const;
|
||||||
void showResults(const std::forward_list<const std::string *> &results);
|
void showResults(const std::vector<const std::string *> &results);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void on_searchInput_textChanged(const QString &search_term);
|
void on_searchInput_textChanged(const QString &search_term);
|
||||||
|
|
|
@ -5,18 +5,8 @@ project(
|
||||||
VERSION 0.1.0
|
VERSION 0.1.0
|
||||||
LANGUAGES CXX)
|
LANGUAGES CXX)
|
||||||
|
|
||||||
add_library(
|
add_library(vector_search STATIC src/word_list_generator.cpp src/timer.cpp
|
||||||
vector_search STATIC
|
src/linear_finder.cpp src/parallel_finder.cpp)
|
||||||
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)
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,12 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <forward_list>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
using std::string, std::string_view, std::forward_list;
|
using std::string, std::string_view, std::vector;
|
||||||
|
|
||||||
class Finder {
|
class Finder {
|
||||||
public:
|
public:
|
||||||
virtual ~Finder() = default;
|
virtual ~Finder() = default;
|
||||||
|
virtual vector<const string *> find_prefix(string_view search_term) const = 0;
|
||||||
virtual forward_list<const string *>
|
|
||||||
find_prefix(string_view search_term) const = 0;
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,16 +2,11 @@
|
||||||
|
|
||||||
#include "finder.h"
|
#include "finder.h"
|
||||||
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
using std::vector;
|
|
||||||
|
|
||||||
class LinearFinder : public Finder {
|
class LinearFinder : public Finder {
|
||||||
private:
|
private:
|
||||||
const vector<string> &word_list_;
|
const vector<string> &word_list_;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
LinearFinder(const vector<string> &word_list);
|
LinearFinder(const vector<string> &word_list);
|
||||||
forward_list<const string *>
|
vector<const string *> find_prefix(string_view search_term) const override;
|
||||||
find_prefix(string_view search_term) const override;
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,16 +2,12 @@
|
||||||
|
|
||||||
#include "finder.h"
|
#include "finder.h"
|
||||||
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
class ParallelFinder : public Finder {
|
class ParallelFinder : public Finder {
|
||||||
private:
|
private:
|
||||||
const size_t thread_count_;
|
const size_t thread_count_;
|
||||||
const std::vector<string> &word_list_;
|
const vector<string> &word_list_;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ParallelFinder(const std::vector<string> &word_list, size_t thread_count);
|
ParallelFinder(const vector<string> &word_list, size_t thread_count);
|
||||||
|
vector<const string *> find_prefix(string_view search_term) const override;
|
||||||
std::forward_list<const std::string *>
|
|
||||||
find_prefix(std::string_view search_term) const override;
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
#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;
|
|
||||||
};
|
|
|
@ -3,13 +3,13 @@
|
||||||
LinearFinder::LinearFinder(const vector<string> &word_list)
|
LinearFinder::LinearFinder(const vector<string> &word_list)
|
||||||
: word_list_(word_list) {}
|
: word_list_(word_list) {}
|
||||||
|
|
||||||
forward_list<const string *>
|
vector<const string *>
|
||||||
LinearFinder::find_prefix(string_view search_term) const {
|
LinearFinder::find_prefix(string_view search_term) const {
|
||||||
forward_list<const string *> matching_words;
|
vector<const string *> matching_words;
|
||||||
|
|
||||||
for (const auto ¤t_word : word_list_) {
|
for (const auto ¤t_word : word_list_) {
|
||||||
if (current_word.starts_with(search_term)) {
|
if (current_word.starts_with(search_term)) {
|
||||||
matching_words.push_front(¤t_word);
|
matching_words.push_back(¤t_word);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,15 +3,15 @@
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
using std::mutex, std::thread, std::lock_guard, std::vector, std::forward_list;
|
using std::mutex, std::thread, std::lock_guard;
|
||||||
|
|
||||||
ParallelFinder::ParallelFinder(const vector<string> &word_list,
|
ParallelFinder::ParallelFinder(const vector<string> &word_list,
|
||||||
size_t thread_count)
|
size_t thread_count)
|
||||||
: word_list_(word_list), thread_count_(thread_count) {}
|
: word_list_(word_list), thread_count_(thread_count) {}
|
||||||
|
|
||||||
forward_list<const string *>
|
vector<const string *>
|
||||||
ParallelFinder::find_prefix(string_view search_term) const {
|
ParallelFinder::find_prefix(string_view search_term) const {
|
||||||
forward_list<const string *> result;
|
vector<const string *> result;
|
||||||
mutex result_mutex;
|
mutex result_mutex;
|
||||||
|
|
||||||
vector<thread> threads;
|
vector<thread> threads;
|
||||||
|
@ -25,18 +25,14 @@ ParallelFinder::find_prefix(string_view search_term) const {
|
||||||
|
|
||||||
threads.emplace_back(
|
threads.emplace_back(
|
||||||
[](const vector<string> &word_list, const string_view &search_term,
|
[](const vector<string> &word_list, const string_view &search_term,
|
||||||
forward_list<const string *> &result, size_t start_index,
|
vector<const string *> &result, size_t start_index, size_t end_index,
|
||||||
size_t end_index, mutex &result_mutex) {
|
mutex &result_mutex) {
|
||||||
forward_list<const string *> thread_results;
|
|
||||||
for (size_t index = start_index; index < end_index; ++index) {
|
for (size_t index = start_index; index < end_index; ++index) {
|
||||||
const auto ¤t_word = word_list[index];
|
const auto ¤t_word = word_list[index];
|
||||||
if (current_word.starts_with(search_term)) {
|
if (current_word.starts_with(search_term)) {
|
||||||
thread_results.push_front(¤t_word);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!thread_results.empty()) {
|
|
||||||
const lock_guard<mutex> lock(result_mutex);
|
const lock_guard<mutex> lock(result_mutex);
|
||||||
result.merge(thread_results);
|
result.push_back(¤t_word);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
cref(word_list_), cref(search_term), ref(result), first_word_index,
|
cref(word_list_), cref(search_term), ref(result), first_word_index,
|
||||||
|
|
|
@ -1,53 +0,0 @@
|
||||||
#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,7 +1,6 @@
|
||||||
#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>
|
||||||
|
@ -27,15 +26,16 @@ 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");
|
||||||
find_timer.stop();
|
find_timer.stop();
|
||||||
|
|
||||||
cout << "linear finder took " << find_timer << endl;
|
cout << "linear finder took " << find_timer << endl;
|
||||||
cout << "result list is " << std::distance(result.cbegin(), result.cend())
|
cout << "result list is " << result.size() << " element(s) long" << endl;
|
||||||
<< " element(s) long" << endl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void test_parallel_finder(const vector<string> &word_list) {
|
void test_parallel_finder(const vector<string> &word_list) {
|
||||||
|
@ -45,33 +45,16 @@ 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");
|
||||||
find_timer.stop();
|
find_timer.stop();
|
||||||
|
|
||||||
cout << "parallel finder took " << find_timer << endl;
|
cout << "parallel finder took " << find_timer << endl;
|
||||||
cout << "result list is " << std::distance(result.cbegin(), result.cend())
|
cout << "result list is " << result.size() << " 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[]) {
|
||||||
|
@ -81,7 +64,6 @@ 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