这个函数是我将节点及其数据插入到链表的地方。
void insertNodeAndWord(struct ListNode ** pointerToHead, char word[16]) {
struct ListNode * newNode = (struct ListNode *)malloc(sizeof(struct ListNode));
newNode->word = word;
newNode->next = NULL;
//printf("%s\n", newNode->word); // Prints out the correct words when i try to print from here.
if(*pointerToHead == NULL) {
newNode->next = *pointerToHead;
}
*pointerToHead = newNode;
}
这个函数是我从boggle board获取所有单词的地方(这个函数似乎工作正常,因为当我在这里打印出单词时,它会正确打印出来。
struct ListNode * getAllWords(char currWord[16], int x, int y, const char board[4][4], int check[4][4], struct ListNode * list) {
if(x<0||y<0||x>=4||y>=4) { //base case
return list;
} else if (check[x][y] == 0) {
char newWord[16];
strcpy(newWord, currWord);
if(isPrefix(newWord) == 0) {
return list;
}
int length = strlen(newWord);
newWord[length] = board[x][y];
newWord[length+1] = '\0';
if(isWord(newWord) != 0) {
insertNodeAndWord(&list, newWord);
//printf("%s\n", list->word); // Prints out the correct words when i try to print from here.
printf("Length: %d\n", listLength(list)); // Prints out 1 every time.
}
int row, col;
for(row =-1; row<=1; row++) {
for(col=-1; col<=1; col++) {//
check[x][y] = 1; //marks the board tile as visited
getAllWords(newWord, x+row, y+col, board, check, list);
check[x][y] = 0; //unmarks the board tile as visited
}
}
}
return list;
}
struct ListNode * findWords(const char board[4][4]) {
int x, y;
int check[4][4] = {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}};
char word[16] = "";
struct ListNode * list;
list = NULL;
for(x=0; x<4; x++) {
for(y=0; y<4; y++) {
getAllWords(word, x, y, board, check, list);
// printf("%s\n", list->word); // I get a "has stopped working" error here when i try to print out the words.
}
}
return list;
}