This is for my CS50 assignment. I have to make a spell-checker that loads a dictionary into trie data structure. The segfault doesn't happen until the file size increases.
//Trie structure
typedef struct node {
bool is_word;
struct node* children[27];
}node;
node* root;
// maximum length for a word
#define LENGTH 45
//global counter for total words in dic
int SIZE = 0;
Loads dictionary into memory.
bool load(const char* dictionary)
{
//Open dictionary file && safecheck
FILE* d_file = fopen(dictionary,"r");
if(d_file == NULL) { return false; }
//allocate space for the first node
root = calloc(1,sizeof(node));
//string buffer
char word[SIZE+1];
//loop through each word of the dictionary and store it to word
while(fscanf(d_file,"%s\n",word)!=EOF){
//navigation node steping further into trie
node* nav = root;
int word_length = strlen(word);
//Iterate through each letter in a word
for(int i=0;i<word_length;i++){
int letter_pos = tolower(word[i]) - 'a';
//check if letter node exists
if(nav->children[letter_pos]==NULL){
//create node for a letter
node* l_node = calloc(1,sizeof(node));
if(l_node == NULL) { return false; }
nav->children[letter_pos] = l_node;
}
//proceed to the next node
if(i < word_length-1)
nav = nav->children[letter_pos];
}
//set word to true;
if(nav->is_word != true){
nav->is_word = true;
// counter for total words in the dictionary
SIZE++;
}
}
fclose(d_file);
return true;
}