Compare commits

..

2 commits

Author SHA1 Message Date
Imbus
42f69296f6 Better distance sorting 2024-11-21 09:47:11 +01:00
Imbus
d4970c8d76 Include edit_distance in spell target 2024-11-21 09:46:54 +01:00
2 changed files with 6 additions and 12 deletions

View file

@ -12,7 +12,7 @@ edit: test_edit_distance.o edit_distance.o
@echo "Building & linking $@" @echo "Building & linking $@"
@$(CXX) $(CXXFLAGS) $^ -o $@ @$(CXX) $(CXXFLAGS) $^ -o $@
spell: spell.o word.o dictionary.o spell: spell.o word.o dictionary.o edit_distance.o
@echo "Building & linking $@" @echo "Building & linking $@"
@$(CXX) $(CXXFLAGS) $^ -o $@ @$(CXX) $(CXXFLAGS) $^ -o $@

View file

@ -1,4 +1,5 @@
#include "dictionary.h" #include "dictionary.h"
#include "edit_distance.h"
#include "word.h" #include "word.h"
#include <algorithm> #include <algorithm>
#include <fstream> #include <fstream>
@ -56,19 +57,12 @@ void Dictionary::add_trigram_suggestions(std::vector<std::string> &suggestions,
void Dictionary::rank_suggestions(std::vector<std::string> &suggestions, void Dictionary::rank_suggestions(std::vector<std::string> &suggestions,
const std::string &word) const { const std::string &word) const {
// Get trigrams of the input word // Sort suggestions based on the levenshtein distance
Word input_word(word);
const std::vector<std::string> &input_trigrams = input_word.get_triagrams();
// Sort suggestions based on the number of matching trigrams
std::sort(suggestions.begin(), suggestions.end(), std::sort(suggestions.begin(), suggestions.end(),
[&](const std::string &a, const std::string &b) { [&](const std::string &a, const std::string &b) {
Word word_a(a); auto dist_a = edit_distance(a, word);
Word word_b(b); auto dist_b = edit_distance(b, word);
unsigned int match_a = word_a.get_matches(input_trigrams); return dist_a < dist_b;
unsigned int match_b = word_b.get_matches(input_trigrams);
return match_a >
match_b; // Sort in descending order of match count
}); });
} }