Created
April 30, 2011 10:28
-
-
Save krisys/949588 to your computer and use it in GitHub Desktop.
Spell Check - Trie
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include<fstream> | |
#include<string> | |
using namespace std; | |
int found=0; | |
class node{ | |
public: | |
char info; | |
string Word; | |
class node* ptrs[256]; | |
node(){ | |
for(int i=0;i<256;i++){ | |
ptrs[i]=NULL; | |
} | |
info=NULL; | |
Word=""; | |
} | |
}; | |
void insertword(string word,int pos,class node * root){ | |
if(word.length()==pos){ | |
root->Word=word; | |
return; | |
} | |
if( root-> ptrs[word[pos]]==NULL ){ | |
node *newnode; | |
newnode= new node; | |
newnode->info=word[pos]; | |
root->ptrs[word[pos]]=newnode; | |
insertword(word,pos+1,root->ptrs[word[pos]]); | |
} | |
else | |
insertword(word,pos+1,root->ptrs[word[pos]]); | |
} | |
void find(string key,int pos, class node * root){ | |
if((key != root->Word) && (root->ptrs[key[pos]] != NULL)) | |
find(key,pos+1,root->ptrs[key[pos]]); | |
else if(key==root->Word){ | |
cout<<"The spelling of the word '"<<root->Word<<"' is correct"<<endl; | |
found=1; | |
} | |
} | |
void printall(class node * root){ | |
for(int i=0;i<256;i++) | |
if(root->ptrs[i]!=NULL){ | |
printall(root->ptrs[i]); | |
} | |
if(root->Word != "") | |
cout<<" -> "<<root->Word<<endl; | |
} | |
void suggest(string key,int pos, class node * root){ | |
if((key != root->Word) && (root->ptrs[key[pos]] != NULL)){ | |
suggest(key,pos+1,root->ptrs[key[pos]]); | |
} | |
else{ | |
printall(root); | |
} | |
} | |
int main(){ | |
ifstream in("wordlist.txt"); | |
string word,current="",key; | |
node *root; | |
root = new node; | |
while(in){ | |
in>>word; | |
insertword(word,0,root); | |
} | |
in.close(); | |
cout<<endl<<"Trie Construction Successful"<<endl; | |
//printall(root); | |
cout<<"Enter the word to be searched for : "; | |
cin>>key; | |
find(key,0,root); | |
if(!found){ | |
cout<<endl<<"The spelling is incorrect, Possible suggestions are :"<<endl; | |
suggest(key,0,root); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment