Hello, I have to create a double linked list array of pointers for the alphabet (one pointer per letter).
Ok, so I tried starting by creating a double linked list:
struct word{
string newWord;
word *next;
word *back;
};
struct wordList{
word *head;
};
And then array of pointers:
wordList *letter[26];
Is this starting out right? I am wondering, because when I went to initialize the array, I ran into compiler problems. Thanks in advance for your tips.
Terri