繁体   English   中英

C-删除链表中的节点

[英]C - Deleting a node in a linked list

我正在使用代码中的删除功能。 我想删除节点内的key, value对并释放分配给它的空间。 我不确定如何处理此问题,以便随后的节点移到正确的位置(不确定如何措辞,希望您知道我的意思)。 这是我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <assert.h>
#include "symTable.h"
#define DEFAULT_TABLE_SIZE 61
#define HASH_MULTIPLIER 65599

/*Structures*/
typedef struct Node
{
    char *key;
    void *value;
    struct Node *next;
} Node_T;

typedef struct SymTable
{
    Node_T **Table;
    int tablesize;
    int counter;
} *SymTable_T;

/*Global Variables*/
int tablesize = DEFAULT_TABLE_SIZE;
int counter = 0;

/*Create function to show how memory is allocated*/
SymTable_T SymTable_create(void)
{
    SymTable_T S_Table;
    S_Table = malloc(sizeof(SymTable_T *) * DEFAULT_TABLE_SIZE);
    S_Table->Table = (Node_T **) calloc(DEFAULT_TABLE_SIZE, sizeof(Node_T *));

    return S_Table;
}

/*Hash Function*/
static unsigned int hash(const char *key, const int tablesize)
{
    int i;
    unsigned int h = 0U;

    for (i = 0; key[i] != '\0'; i++)
        h = h * tablesize + (unsigned char) key[i];
    return h % tablesize;
}

/*Delete Function*/
int symTable_delete(SymTable_T symTable, const char *key)
{
    Node_T *new_list;
    unsigned int hashval = hash(key, DEFAULT_TABLE_SIZE);

    free(new_list->key);
    free(new_list->value);

    //here is where I am stuck, how can I make it so the nodes following the one deleted go to the right space?
}

使用单链列表,您可以

A-> B-> C

如果要删除B,则需要

A-> C

唯一的方法是获取B的父对象并更新其指针,这意味着

  1. 您需要添加一个从节点到其父节点的指针(也称为使用双向链表)
  2. 您遍历该列表,直到找到一个将子指针设置为要删除的节点的节点,然后更新指针以使其指向child.child

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM