c中的双链表实现

时间:2013-11-05 23:33:50

标签: c list linked-list

我正在努力提高我的编程技能,所以开始尝试编写双链表。

这是我到目前为止所提出的。

#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
//forward definition

typedef struct Node node_t;


//Define the structures needed for double linked list

//Each node
typedef struct Node 
{
        int data;
        node_t *next;
        node_t *prev;
}node_t;




void initList(node_t** first , node_t** last)
{
    //Allocate memory for the first and the last node

    *first = (node_t*) malloc(sizeof(node_t));
    *last =  (node_t*) malloc(sizeof(node_t));
    (*first)->data = 1;
    (*last)->data = 2;

    (*first)->prev = NULL;
    (*last)->next = NULL;

    (*first)->next = (*last)->prev;

    return;

}

void destroyList(node_t** first)
{
    node_t* temp;

    temp = *first;

    free((*first)->next);
    free((*first));
    temp = NULL;



    return;
}



int main()
{

    node_t *first =NULL, *last = NULL;

    printf("Initalizing the List\n");
    initList(&first,&last);

    printf(" 1st element is %d\n",first->data);
    printf(" 2nd element is %d\n",last->data);

    printf("Destroying the List\n");




    destroyList(&first) ;


    return 0;
}

我实际上在线查找了一些代码,我发现大多数实现都有

1)节点的1个结构和List本身的1个结构(带头部和尾部)。  我的问题是,这是强制性的吗?我只能用1个结构来实现吗?

2)我的想法是将此文件作为库并从应用程序中调用它。像
          InitList(),DestroyList(),AddNode,DeleteNode等。

这就是为什么我使用双指针进行INit并销毁。 我在破坏列表时遇到了一些麻烦。我知道我做错了,我会继续纠正它。

3)我发现节点指针

 temp = first

指着某个地址。如果我做temp ++。为什么不指向下一个节点?

4)我们可以传递第一个或最后一个节点指针来删除整个列表吗? (即遍历和dleete sequentialluy?)

谢谢!

2 个答案:

答案 0 :(得分:1)

1)没有必要有一个列表结构,但是如果结构跟踪某些元数据(例如,列表的长度,否则为了获得长度,你必须迭代你的某些元数据),它会使某些操作更快地执行每次列出大型列表可能很昂贵的列表)。

3)我假设你的意思

temp = *first

和temp ++没有指向下一个节点,因为它不能保证你的节点在连续的内存地址中(另一方面是数组)。

4)你可以使用first或last来删除列表,但是你必须确保某个属性,即head的前一个也指向NULL,否则你可能陷入无限循环

答案 1 :(得分:1)

1)Node的1个结构和List本身的1个结构当然不是强制性的。它通常用1个结构完成。

2)好主意InitList(),DestroyList(),AddNode,DeleteNode等。

您的初始化可能需要

(*first)->next = *last;
(*last)->prev = *first;
//  rather than
(*first)->next = (*last)->prev;

3)作为@Jamil Seaidoun,不要temp++,而是temp = temp->next

4)你可以通过任何一端。经典问题是没有在free()

之前获得下一个指针
// bad code
free(temp);
temp = temp->next;

// good code
next = temp->next;
free(temp);
temp = next;

漫记

范式转变。考虑一个没有NULL指针的双链接列表。而是制作完整的圆圈。 Last->next = FirstFirst->prev = Last。然后循环直到p->next == NULL而不是直到p->next == first的while循环。该列表只指向第一个节点(如果为空则为NULL)。我发现这种风格更灵活,更少* NULL。

第二范式转变。有时,双链接列表的唯一原因是允许将节点添加到开头或结尾。这可以通过围绕圆圈的单个next字段来完成。在这种情况下,列表指针不指向第一个节点,而是指向最后一个节点。 (注意:首先是last-&gt; next)在开头或结尾插入是相同的,在最后一个之后和之前添加一个节点。不同之处在于我们将列表指针保持原样,还是将其推进。