Compare commits
No commits in common. "4b42f4c12a319b80c44dbc76736ca3ea2503a33d" and "48f05ddb4fde33b24ca02dcc5eb5a9f5821d5464" have entirely different histories.
4b42f4c12a
...
48f05ddb4f
|
@ -4,14 +4,15 @@
|
||||||
#include "word_list.h"
|
#include "word_list.h"
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
class GroupedFinder : public Finder {
|
class GroupedFinder : public Finder {
|
||||||
private:
|
private:
|
||||||
std::map<char, WordRefList> groups_;
|
std::map<char, std::vector<const std::string *>> groups_;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
GroupedFinder(const WordList &word_list);
|
GroupedFinder(const WordList &word_list);
|
||||||
|
|
||||||
virtual std::forward_list<const std::string *>
|
virtual std::forward_list<const std::string *>
|
||||||
find_prefix(std::string_view search_prefix) const override;
|
find_prefix(std::string_view search_term) const override;
|
||||||
};
|
};
|
||||||
|
|
|
@ -11,5 +11,5 @@ public:
|
||||||
ParallelFinder(const WordList &word_list);
|
ParallelFinder(const WordList &word_list);
|
||||||
|
|
||||||
std::forward_list<const std::string *>
|
std::forward_list<const std::string *>
|
||||||
find_prefix(std::string_view search_prefix) const override;
|
find_prefix(std::string_view search_term) const override;
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,9 +3,11 @@
|
||||||
#include "finder.h"
|
#include "finder.h"
|
||||||
#include "word_list.h"
|
#include "word_list.h"
|
||||||
|
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
class SortedLinearFinder : public Finder {
|
class SortedLinearFinder : public Finder {
|
||||||
private:
|
private:
|
||||||
WordRefList word_list_;
|
std::vector<const std::string *> word_list_;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
SortedLinearFinder(const WordList &word_list);
|
SortedLinearFinder(const WordList &word_list);
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
#include <forward_list>
|
|
||||||
#include <mutex>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
@ -13,19 +11,4 @@ public:
|
||||||
|
|
||||||
static WordList fourCaps();
|
static WordList fourCaps();
|
||||||
static WordList fromFile(const std::filesystem::path &path);
|
static WordList fromFile(const std::filesystem::path &path);
|
||||||
|
|
||||||
static void find_prefix_in_range(
|
|
||||||
const WordList &word_list, const std::string_view &search_prefix,
|
|
||||||
size_t start_index, size_t end_index,
|
|
||||||
std::forward_list<const std::string *> &result, std::mutex &result_mutex);
|
|
||||||
};
|
|
||||||
|
|
||||||
class WordRefList : public std::vector<const std::string *> {
|
|
||||||
public:
|
|
||||||
WordRefList(const WordList &source);
|
|
||||||
|
|
||||||
static void find_prefix_in_range(
|
|
||||||
const WordRefList &word_list, const std::string_view &search_prefix,
|
|
||||||
size_t start_index, size_t end_index,
|
|
||||||
std::forward_list<const std::string *> &result, std::mutex &result_mutex);
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
#include <thread>
|
#include <thread>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
using std::mutex, std::vector, std::thread, std::string, std::forward_list,
|
using std::mutex, std::vector, std::thread, std::lock_guard, std::string,
|
||||||
std::string_view;
|
std::forward_list, std::string_view;
|
||||||
|
|
||||||
GroupedFinder::GroupedFinder(const WordList &word_list) {
|
GroupedFinder::GroupedFinder(const WordList &word_list) {
|
||||||
for (const auto &word : word_list) {
|
for (const auto &word : word_list) {
|
||||||
|
@ -14,9 +14,9 @@ GroupedFinder::GroupedFinder(const WordList &word_list) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
forward_list<const string *>
|
std::forward_list<const std::string *>
|
||||||
GroupedFinder::find_prefix(string_view search_prefix) const {
|
GroupedFinder::find_prefix(std::string_view search_term) const {
|
||||||
const auto group = groups_.find(search_prefix.front());
|
const auto group = groups_.find(search_term.front());
|
||||||
if (group == groups_.cend()) {
|
if (group == groups_.cend()) {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
@ -27,26 +27,41 @@ GroupedFinder::find_prefix(string_view search_prefix) const {
|
||||||
const auto thread_count =
|
const auto thread_count =
|
||||||
std::min<size_t>(std::thread::hardware_concurrency(), word_list_size);
|
std::min<size_t>(std::thread::hardware_concurrency(), word_list_size);
|
||||||
|
|
||||||
forward_list<const string *> result;
|
forward_list<const string *> matching_words;
|
||||||
mutex result_mutex;
|
mutex matching_words_mutex;
|
||||||
|
|
||||||
vector<thread> search_threads;
|
vector<thread> search_threads;
|
||||||
for (size_t thread_index = 0; thread_index < thread_count; ++thread_index) {
|
for (size_t thread_index = 0; thread_index < thread_count; ++thread_index) {
|
||||||
const size_t first_index = thread_index * (word_list_size / thread_count);
|
const size_t first_word_index =
|
||||||
|
thread_index * (word_list_size / thread_count);
|
||||||
const size_t last_index =
|
const size_t last_word_index =
|
||||||
(thread_index == thread_count - 1)
|
(thread_index == thread_count - 1)
|
||||||
? word_list_size
|
? word_list_size
|
||||||
: (thread_index + 1) * (word_list_size / thread_count);
|
: (thread_index + 1) * (word_list_size / thread_count);
|
||||||
|
|
||||||
search_threads.emplace_back(
|
search_threads.emplace_back(
|
||||||
WordRefList::find_prefix_in_range, cref(word_list), cref(search_prefix),
|
[](const vector<const string *> &word_list,
|
||||||
first_index, last_index, ref(result), ref(result_mutex));
|
const string_view &search_term, forward_list<const string *> &result,
|
||||||
|
size_t start_index, size_t end_index, mutex &result_mutex) {
|
||||||
|
forward_list<const string *> thread_results;
|
||||||
|
for (size_t index = start_index; index < end_index; ++index) {
|
||||||
|
const auto ¤t_word = word_list[index];
|
||||||
|
if (current_word->starts_with(search_term)) {
|
||||||
|
thread_results.push_front(current_word);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!thread_results.empty()) {
|
||||||
|
const lock_guard<mutex> lock(result_mutex);
|
||||||
|
result.merge(thread_results);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
cref(word_list), cref(search_term), ref(matching_words),
|
||||||
|
first_word_index, last_word_index, ref(matching_words_mutex));
|
||||||
}
|
}
|
||||||
|
|
||||||
for (auto &thread : search_threads) {
|
for (auto &thread : search_threads) {
|
||||||
thread.join();
|
thread.join();
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return matching_words;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,36 +3,51 @@
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
using std::mutex, std::thread, std::vector, std::forward_list, std::string,
|
using std::mutex, std::thread, std::lock_guard, std::vector, std::forward_list,
|
||||||
std::string_view;
|
std::string, std::string_view;
|
||||||
|
|
||||||
ParallelFinder::ParallelFinder(const WordList &word_list)
|
ParallelFinder::ParallelFinder(const WordList &word_list)
|
||||||
: word_list_(word_list) {}
|
: word_list_(word_list) {}
|
||||||
|
|
||||||
forward_list<const string *>
|
forward_list<const string *>
|
||||||
ParallelFinder::find_prefix(string_view search_prefix) const {
|
ParallelFinder::find_prefix(string_view search_term) const {
|
||||||
forward_list<const string *> result;
|
forward_list<const string *> result;
|
||||||
mutex result_mutex;
|
mutex result_mutex;
|
||||||
|
|
||||||
const size_t word_list_size = word_list_.size();
|
const auto word_list_size = word_list_.size();
|
||||||
const size_t thread_count =
|
|
||||||
std::min<size_t>(thread::hardware_concurrency(), word_list_size);
|
|
||||||
|
|
||||||
vector<thread> search_threads;
|
const size_t thread_count = thread::hardware_concurrency();
|
||||||
|
|
||||||
|
vector<thread> threads;
|
||||||
for (size_t thread_index = 0; thread_index < thread_count; ++thread_index) {
|
for (size_t thread_index = 0; thread_index < thread_count; ++thread_index) {
|
||||||
const size_t first_index = thread_index * (word_list_size / thread_count);
|
const size_t first_word_index =
|
||||||
|
thread_index * (word_list_size / thread_count);
|
||||||
const size_t last_index =
|
const size_t last_word_index =
|
||||||
(thread_index == thread_count - 1)
|
(thread_index == thread_count - 1)
|
||||||
? word_list_size
|
? word_list_size
|
||||||
: (thread_index + 1) * (word_list_size / thread_count);
|
: (thread_index + 1) * (word_list_size / thread_count);
|
||||||
|
|
||||||
search_threads.emplace_back(
|
threads.emplace_back(
|
||||||
WordList::find_prefix_in_range, cref(word_list_), cref(search_prefix),
|
[](const WordList &word_list, const string_view &search_term,
|
||||||
first_index, last_index, ref(result), ref(result_mutex));
|
forward_list<const string *> &result, size_t start_index,
|
||||||
|
size_t end_index, mutex &result_mutex) {
|
||||||
|
forward_list<const string *> thread_results;
|
||||||
|
for (size_t index = start_index; index < end_index; ++index) {
|
||||||
|
const auto ¤t_word = word_list[index];
|
||||||
|
if (current_word.starts_with(search_term)) {
|
||||||
|
thread_results.push_front(¤t_word);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!thread_results.empty()) {
|
||||||
|
const lock_guard<mutex> lock(result_mutex);
|
||||||
|
result.merge(thread_results);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
cref(word_list_), cref(search_term), ref(result), first_word_index,
|
||||||
|
last_word_index, ref(result_mutex));
|
||||||
}
|
}
|
||||||
|
|
||||||
for (auto &thread : search_threads) {
|
for (auto &thread : threads) {
|
||||||
thread.join();
|
thread.join();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,16 +1,19 @@
|
||||||
#include "sorted_linear_finder.h"
|
#include "sorted_linear_finder.h"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
#include <iterator>
|
||||||
|
|
||||||
using std::forward_list, std::string, std::string_view;
|
using std::forward_list, std::string, std::string_view;
|
||||||
|
|
||||||
SortedLinearFinder::SortedLinearFinder(const WordList &word_list)
|
SortedLinearFinder::SortedLinearFinder(const WordList &word_list) {
|
||||||
: word_list_(word_list) {
|
std::transform(word_list.cbegin(), word_list.cend(),
|
||||||
|
std::back_inserter(word_list_),
|
||||||
|
[](const string &word) { return &word; });
|
||||||
|
|
||||||
std::sort(
|
std::sort(
|
||||||
word_list_.begin(), word_list_.end(),
|
word_list_.begin(), word_list_.end(),
|
||||||
[](const string *left, const string *right) { return *left < *right; });
|
[](const string *left, const string *right) { return *left < *right; });
|
||||||
}
|
}
|
||||||
|
|
||||||
forward_list<const string *>
|
forward_list<const string *>
|
||||||
SortedLinearFinder::find_prefix(string_view search_term) const {
|
SortedLinearFinder::find_prefix(string_view search_term) const {
|
||||||
forward_list<const string *> matching_words;
|
forward_list<const string *> matching_words;
|
||||||
|
|
|
@ -57,47 +57,3 @@ WordList WordList::fromFile(const std::filesystem::path &path) {
|
||||||
|
|
||||||
return word_list;
|
return word_list;
|
||||||
}
|
}
|
||||||
|
|
||||||
void WordList::find_prefix_in_range(
|
|
||||||
const WordList &word_list, const std::string_view &search_prefix,
|
|
||||||
size_t start_index, size_t end_index,
|
|
||||||
std::forward_list<const std::string *> &result, std::mutex &result_mutex) {
|
|
||||||
std::forward_list<const std::string *> local_results;
|
|
||||||
|
|
||||||
for (size_t index = start_index; index < end_index; ++index) {
|
|
||||||
const auto ¤t_word = word_list[index];
|
|
||||||
if (current_word.starts_with(search_prefix)) {
|
|
||||||
local_results.push_front(¤t_word);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!local_results.empty()) {
|
|
||||||
const std::lock_guard<std::mutex> lock(result_mutex);
|
|
||||||
result.merge(local_results);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
WordRefList::WordRefList(const WordList &source) {
|
|
||||||
for (const auto &word : source) {
|
|
||||||
push_back(&word);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void WordRefList::find_prefix_in_range(
|
|
||||||
const WordRefList &word_list, const std::string_view &search_prefix,
|
|
||||||
size_t start_index, size_t end_index,
|
|
||||||
std::forward_list<const std::string *> &result, std::mutex &result_mutex) {
|
|
||||||
std::forward_list<const std::string *> local_results;
|
|
||||||
|
|
||||||
for (size_t index = start_index; index < end_index; ++index) {
|
|
||||||
const auto *current_word = word_list[index];
|
|
||||||
if (current_word->starts_with(search_prefix)) {
|
|
||||||
local_results.push_front(current_word);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!local_results.empty()) {
|
|
||||||
const std::lock_guard<std::mutex> lock(result_mutex);
|
|
||||||
result.merge(local_results);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
|
@ -30,8 +30,9 @@ void test_finder_search(Finder &finder, string_view name,
|
||||||
auto result = finder.find_prefix(search_term);
|
auto result = finder.find_prefix(search_term);
|
||||||
find_timer.stop();
|
find_timer.stop();
|
||||||
|
|
||||||
cout << name << "(" << search_term << ") took " << find_timer << " for "
|
cout << name << "(" << search_term << ") took " << find_timer << endl;
|
||||||
<< std::distance(result.cbegin(), result.cend()) << " results" << endl;
|
cout << "result list is " << std::distance(result.cbegin(), result.cend())
|
||||||
|
<< " element(s) long" << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename FINDER>
|
template <typename FINDER>
|
||||||
|
@ -43,8 +44,7 @@ void test_finder(const WordList &word_list, string_view finder_name) {
|
||||||
constructor_timer.stop();
|
constructor_timer.stop();
|
||||||
cout << finder_name << " constructor took " << constructor_timer << endl;
|
cout << finder_name << " constructor took " << constructor_timer << endl;
|
||||||
|
|
||||||
for (const auto &search_term :
|
for (const auto &search_term : {"A", "AB", "ABC", "ABCD"}) {
|
||||||
{"A", "Z", "AB", "ZY", "ABC", "ZYX", "ABCD", "ZYXW"}) {
|
|
||||||
test_finder_search(finder, finder_name, search_term);
|
test_finder_search(finder, finder_name, search_term);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue