-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathREADME
19 lines (14 loc) · 886 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Had made this program as a solution for a programming contest called MobMe CodeJam
Dependancies(using Hashtable)
1. Dictionary used by spellchecker(dictionary.txt)
2. Word Database used by spellingsuggest(wordprobabilityDatabase)
3. Input Text File used by spellchecker(inputtext.txt)
Usage
The source files along with the dependancies have been sent. Compile the source code($javac spellchecker.java) and then run its class($java spellchecker).
Dependancies(using Bloom Filter)
1. Dictionary used by spellchecker(dictionary.txt)
2. Word Database used by spellingsuggest(wordprobabilityDatabase)
3. Input Text File used by spellchecker(inputtext.txt)
4. Bloom Filter Class used by spellchecker(bloomfilter12.java)
Usage
The source files along with the dependancies have been sent. Compile the source code($javac spellchecker12.java) and then run its class($java spellchecker12).