├── .gitignore ├── CMakeLists.txt ├── README.md ├── SymSpell.vcxproj ├── SymSpellCpp.sln ├── SymSpellTest.cpp ├── SymSpellTest.vcxproj ├── data └── frequency_dictionary_en_82_765.txt ├── include ├── Helpers.h └── SymSpell.h └── src └── SymSpell.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .vscode/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtheS21/SymspellCPP/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtheS21/SymspellCPP/HEAD/README.md -------------------------------------------------------------------------------- /SymSpell.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtheS21/SymspellCPP/HEAD/SymSpell.vcxproj -------------------------------------------------------------------------------- /SymSpellCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtheS21/SymspellCPP/HEAD/SymSpellCpp.sln -------------------------------------------------------------------------------- /SymSpellTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtheS21/SymspellCPP/HEAD/SymSpellTest.cpp -------------------------------------------------------------------------------- /SymSpellTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtheS21/SymspellCPP/HEAD/SymSpellTest.vcxproj -------------------------------------------------------------------------------- /data/frequency_dictionary_en_82_765.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtheS21/SymspellCPP/HEAD/data/frequency_dictionary_en_82_765.txt -------------------------------------------------------------------------------- /include/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtheS21/SymspellCPP/HEAD/include/Helpers.h -------------------------------------------------------------------------------- /include/SymSpell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtheS21/SymspellCPP/HEAD/include/SymSpell.h -------------------------------------------------------------------------------- /src/SymSpell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtheS21/SymspellCPP/HEAD/src/SymSpell.cpp --------------------------------------------------------------------------------