/Spell-Checker

A prototype spell checker where given words are checked against a dictionary which is a set of words in a file

Primary LanguageC++

Spell-Checker

A prototype spell checker with error detection capabilities. It can import an exisiting list of words to act as the dictionary, and spell check words against this set of words. This applications utilises the Trie data structure for storage of words in the dictonary.

Features

  • Spell check a word entered by user
  • Spell check a file specified by user
  • Add a new word to the dictionary
  • Save the dictionary
  • Display all words in dictionary that starts with certain letters
  • Remove a word from the dictionary

Usage

The prototype has an interactive command line interface for users to interact with the application. Select the desired option and follow the prompts

Notes

  • Default location where all files are loaded and saved in the Resource Files folder
  • Prototype currently does not work with words containing special characters (i.e dashes)