c - 从字符串链接列表中删除字符串

标签 c string linked-list

我正在开发一个文字处理器,要求它能够从单词列表中删除一个单词。

基本上,用户输入单词(因此,字符串),然后将其存储在链接列表中(这里是 dico,这要归功于代表用户输入的所有单词的结构字典)。

不幸的是,我被困住了:我编写的代码似乎只删除了第二个字符,而我希望它能够删除用户请求的单词(此处:str)。

例如,如果用户之前输入:“hello world”,现在想要删除世界“world”,则 dico 现在应该是“hello”。

typedef struct dll {
    char data;
    int count;      //not needed here
    struct dll* next;
} dll;  //linked list of each character : dll represents one word

typedef struct dictionary {
    dll * data;
    struct dictionary* next;
    struct dictionary* prev;
} dictionary;  //linked list of all the words

dll* entry(){
    char data = getc(stdin);
    if (data != '\n'){
        dll* curr = create_dico(data);
        curr->next=entry();
        return curr;
    }
    return NULL;
}


void suppression(dictionary** dico) {
    printf("Please enter what you wish to remove out of the list: \n");
    dictionary *str = malloc(sizeof(dictionary));
    str->data = entry();
    str->next = NULL;

    dictionary* temp = *dico;

    if (str->data == NULL){
        *dico = temp->next;
        free(temp);
        return;
    }
    while (temp != NULL && temp->data->data == str->data->data) {
        temp = temp->next;
    }
    dictionary *next = temp->next->next;
    free(temp->next);
    temp->next = next;
}

最佳答案

您的删除函数不反射(reflect)您正在使用的数据结构:链表的链表!

您需要做的第一件事是检测单词所在的位置,为此您需要比较两个链接列表:

// notice: pointer to dll, not dictionary!
dll* str = entry();

dictionary* temp = *dico;
while(temp)
{
    dll* s = str; // you yet need original str for deletion!
    dll* word = temp->data;
    while(word && s && word->data == s->data)
    {
        word = word->next;
        s = s->next;
    }
    // OK, now we need to know if we reached the ends of BOTH word and s
    // -> in that case, both are equal!
    if(!word && !s)
        break;
}

所以我们现在迭代单词列表。如果我们在里面找到了字符串,我们就会提前停止,否则我们就会在最后到达空元素。所以:

if(temp)
{
    // we didn't reach end of the words' list -> we found an equal element

    // at first, we'd remove the current word from the linked simply by
    // re-linking predecessor and successor nodes
    // the nice thing about is that you created a doubly linked list
    // so we have both of them available from current node, so:

    if(temp->prev)
        temp->prev->next = temp->next;
    else
        // special case: we are deleting the head node!
        *dico = temp->next;

    if(temp->next)
        temp->next->prev = temp->prev;
    // no else needed, as we haven't a dedicated tail node

    // now we need to delete the word's characters!
    dll* word = temp->data;
    while(word)
    {
        dll* next = word->next;
        free(word);
        word = next;
    }

    // now we yet need to delete the word node itself!
    free(temp);
}

到目前为止还好,列表已调整。不过,我们创建了一个临时引用字符串,它本身也需要再次释放:

while(str)
    // well, just the same as when deleting the word...

当你做同样的事情两次时,你可能会创建一个通用函数......

请注意,以上是未经测试的代码,不能保证它没有错误。但它应该足以表明您必须关注的地方...还要注意,这个答案基于相当多的假设,主要是之前已正确创建的列表,如您没有提供 minimal reproducible example .

关于c - 从字符串链接列表中删除字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58482183/

相关文章:

python - 我必须检查字符串是否包含 : alphanumeric, 字母、数字、小写和大写字符

typedef 和 struct 之间的类型冲突

C:读取二进制问题

c - 计算机上字符表示的底层细节

从 glade 克隆一个 GtkWidget,这样它就可以在应用程序中多次重用

C指针数组/指针数组消歧

c++ - 指向自身的节点

c - 我正在创建一个函数来直接在 C 中创建节点。但是,我不知道如何实现节点的命名部分

java - 如何比较两个 Java 字符串,而不必担心 Parse 查询中任一字符串的大小写?

java - 从字符串中的byte[]到字符串?