项目作者: saboorelahi

项目描述 :
This program is implemented in C++ and it detects spelling mistakes in some file based on words present in dictionary. The interesting thing is that the program detects spelling mistakes in 0(1) time complexity.
高级语言: C++
项目地址: git://github.com/saboorelahi/BloomFilter.git
创建时间: 2018-10-28T21:31:13Z
项目社区:https://github.com/saboorelahi/BloomFilter

开源协议:

下载


BloomFilter

This program is implemented in C++ and it detects spelling mistakes in some file based on words present in dictionary. The interesting thing is that the program detects spelling mistakes in 0(1) time complexity.

How to run ?

  • Download the cpp file (was tested in visual studio)
  • Download the dict.txt file (This is dictionary which contains the correct spellings of words). Put it in same directory as above cpp file
  • Download check.txt or make a new file yourself in which you want to check the spelling mistakes.