I'm trying to create a program that begins by parsing a number of strings and adding them into a Linked List, and then ending by printing out the occurrences of each string.
#include<stdio.h>
#include<stdlib.h>
#include<stdbool.h>
typedef struct Node Node;
struct Node
{
char* word;
int count;
struct Node *next;
};
Node *head = NULL;
Node *curr = NULL;
Node* listAdd(char* word, bool toEnd) {
Node* tmp = head;
while (tmp) {
if (strcmp(tmp, word) == 0) {
tmp->count++;
return tmp;
}
tmp = tmp->next;
}
printf("allocate memory for node");
Node *ptr = malloc(sizeof(Node));
printf("initialize count to 0");
ptr->count = 0;
printf("allocate memory to hold word");
ptr->word = malloc(strlen(word) + 1);
printf("copy the current word");
strcpy(ptr->word, word);
ptr->next = NULL;
if (toEnd)
{
curr->next = ptr;
curr = ptr;
}
else
{
ptr->next = head;
head = ptr;
}
return ptr;
}
void printList()
{
Node *ptr = head;
while (ptr)
{
printf("\nThe word [%s] has had [%d] occurrences.\n",ptr->word, ptr->count);
ptr = ptr->next;
}
}
char* readWord()
{
static char buffer[100];
scanf("%s", buffer);
printf("listAdd() call");
listAdd(buffer);
return buffer;
}
int main(void)
{
int i = 0;
printf("How many words would you like to type?\n");
scanf("%d", &i);
for (i; i != 0; i--)
{
readWord();
}
printList();
}
Current output:
How many words would you like to input?
3
hi
bye
yes
How many words would you like to input?
Occurrences: 12086064
Any assistance would be greatly appreciated — I'm still a novice at C coming from C# :(
searchList.countis not initialised..listAdd()e.gptr->word = malloc(strlen(word) + 1);and then copy over the stringstrcpy(ptr->word, word);readWord()is called.