An open API service indexing awesome lists of open source software.

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++

Awesome Lists containing this project

README

          

# Spell Correct
[![Codacy grade](https://img.shields.io/codacy/grade/8f6e16a9ba934c68be7b361eacae198e.svg)]()

> 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)