0

我正在尝试编写一个函数words,该函数从作为参数传递的文本中生成一个单词的单链表(由空格分隔的字符序列)。结果列表中的单词应与文本中的相同。

不幸的是,程序在运行时出错,你能解释一下出了什么问题,我也很感激一些提示。这是代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <conio.h>

struct node{
    char* word;
    struct node* next;
};

void printList(struct node* list){
    struct node* it = list;
    while(it != NULL){
        printf("%s ", it -> word);
        it = it -> next;
    }
    printf("\n");
}

void insertLast(struct node* tail, char* neww){
    tail -> next = (struct node*)malloc(sizeof(struct node));
    tail = tail -> next;
    tail -> word = neww;
    tail -> next = NULL;
}

struct node* words(char* s){
    char* slowo = strtok(s, " ");
    struct node* head;
    struct node* tail;
    if (sizeof(slowo) == 0)
        return NULL ;
    head = (struct node*)malloc(sizeof(struct node));

    head -> word = slowo;
    head -> next = NULL;
    tail = head;
    slowo = strtok(NULL, " ");
    while (slowo != NULL){
        insertLast(tail, slowo);
        tail = tail -> next;
        slowo = strtok(NULL, " ");
    }
    return head;
}

int main() {
    printList(words("Some sentance la al olaalal"));
    getch();
    return (EXIT_SUCCESS);
}
4

2 回答 2

1

如果您不想在调用函数insertLast中设置tail,则必须通过引用传递指针(即作为指向指针的指针。):

void insertLast(struct node** tail, char* neww)

使用适当的取消引用insertLast使其正常工作。

于 2012-02-06T13:50:23.577 回答
0

您的函数会就地words()修改其参数 ( )。s您正在words()使用字符串文字进行调用,并且不允许修改字符串文字。为了解决这个问题,您可以使用ors放入堆分配的内存中。strdup()malloc()+strcpy()

于 2012-02-06T13:43:35.363 回答