https://github.com/iamareebjamal/spell-correct-cpp
A simple spell corrector built in C++
https://github.com/iamareebjamal/spell-correct-cpp
dictionary-learning levenshtein-distance spelling-correction
Last synced: 7 months ago
JSON representation
A simple spell corrector built in C++
- Host: GitHub
- URL: https://github.com/iamareebjamal/spell-correct-cpp
- Owner: iamareebjamal
- License: apache-2.0
- Created: 2017-02-01T18:25:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-05T12:58:55.000Z (over 8 years ago)
- Last Synced: 2025-01-28T02:32:45.733Z (8 months ago)
- Topics: dictionary-learning, levenshtein-distance, spelling-correction
- Language: C++
- Size: 96.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spell Correct
[]()> A simple spell corrector built in C++
### Working
Loads a list of words from a dictionary, takes a word as input and suggests a list of correct words based on levenshtein damerau distance and some other priority algorithms.
Based on an [article](http://norvig.com/spell-correct.html) by Peter Norvig### Author
[@iamareebjamal](https://github.com/iamareebjamal)