SymSpellPlusPlus
SymSpell C++ Ports
Install / Use
/learn @erhanbaris/SymSpellPlusPlusREADME
SymSpellPlusPlus
Fast way to spell checking on C++.
If you define USE_SPARSEPP before the including header file, it will much more faster than before. But also you have to sparsepp include to your project if you use USE_SPARSEPP preprocessor. Project is based on SymSpell Version 6.1 and it is much more faster than previous versions.
#include <iostream>
#define USE_SPARSEPP // optional
#include "symspell6.h"
using namespace std;
int main(int argc, const char * argv[]) {
symspell::SymSpell symSpell;
symSpell.CreateDictionaryEntry("united kingdom", 1);
symSpell.CreateDictionaryEntry("united state", 2);
char* searchTerm = (char*)"united stta";
vector< std::unique_ptr<symspell::SuggestItem>> items;
symSpell.Lookup(searchTerm, symspell::Verbosity::Top, items);
return 0;
}
For sparsepp : https://github.com/greg7mdp/sparsepp
For SymSpell : https://github.com/wolfgarbe/symspell
Static linking exception. The copyright holders give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you must extend this exception to your version of the library.
Related Skills
node-connect
336.5kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.9kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
336.5kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
82.9kCommit, push, and open a PR
