自己手写一个双向链表【C风格】

//双链表
#include <iostream>
#define MAX_SIZE 20
#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0

typedef int ElemType;//元素的类型
typedef int Status;//返回的状态类型

typedef struct DoubleNode
{
    struct DoubleNode* prior;
    ElemType data;
    struct DoubleNode* next;
}*DoubleList;//创建双链表

//初始化
Status InitList(DoubleList* L)
{
    *L = (DoubleList)malloc(sizeof(DoubleNode));
    if ((*L) == NULL)return ERROR;
    (*L)->next = NULL;
    (*L)->prior = NULL;
    return OK;
}
//获取长度
Status ListLength(DoubleList L)
{
    int length = 0;
    if (L == NULL) return length;
    while (L->next)
    {
        length++;
        L = L->next;
    }
    return length;
}
//获取某一个元素的位置
int GetElemIndex(DoubleList L, ElemType e)
{   
    int length = 1;
    if (L == NULL) return -1;
    while (L->next)
    {
        if (e == L->next->data)
            return length;
        L = L->next;
        length++;
    }
    return -1;
}
//获取某个位置的元素
Status GetElem(DoubleList L, int index, ElemType *e)
{
    if ( (L == NULL) || (index < 1) ) return ERROR;
    while (index--)
    {
        L = L->next;
        if (L == NULL)
            return ERROR;
    }
    *e = L->data;
    return OK;
}
//插入元素
Status ListInsert(DoubleList *L, int index, ElemType e)
{
    DoubleList q;
    if ( ((*L) == NULL) || (index > ListLength(*L) + 1) ||(index < 1) ) 
        return ERROR;
    //两种情况,链表为空还是不为空
    //在index之前一个位置操作,不容易出错
    if ((*L)->next != NULL && (index - 1 ) >0 )
    {
        *L = (*L)->next;
    }
    //开辟新节点的内存
    q = (DoubleList)malloc(sizeof(DoubleNode));
    if (q == NULL) return ERROR;
    q->data = e;
    
    //新节点连接前后节点
    q->next = (*L)->next;
    q->prior = (*L);

    //前后节点连接新节点
    if ((*L)->next)//如果后面是空节点不用连接,直接连接的是头结点
        (*L)->next->prior = q;//如果不加判断,会出现异常,NULL节点的前一节点不存在
    (*L)->next = q;

    return OK;   
}
//删除元素
Status ListDelete(DoubleList* L, int index)
{
    DoubleList p = *L, s;
    if (((*L) == NULL) || (index > ListLength(*L)) || (index < 1))
        return ERROR;
    while (index--)
    {
        p = p->next;//找到指定的位置节点
    }
    s = p->prior;//保存上一节点

    s->next = p->next;//指定删除的节点的前后节点互相连接
    p->next->prior = s;

    free(p);

    return OK;

}
//清空
Status ClearList(DoubleList* L)
{
    if ((*L) == NULL)
        return ERROR;
    DoubleList p = (*L)->next, s;
    int length = ListLength(*L);
    while (length--)
    {
        s = p;//保存现在的位置
        p = p->next;
        free(s);
    }
    (*L)->next = NULL;
    (*L)->prior = NULL;
    return OK;
}
//显示
Status ShowList(DoubleList L)
{
    if (L == NULL)
    {
        return ERROR;
    }
        
    int length = ListLength(L);
    while (length--)
    {
        L = L->next;
        printf("%d-->", L->data);
    }
    printf("已经全部显示\n");
    return OK;
}

int main()
{
    
    DoubleList L;
    ElemType e;

    //初始化
    InitList(&L);
    ShowList(L);
    printf("长度为:%d\n", ListLength(L));

    //插入节点
    for (int i = 1; i < 10; i++)
    {
        ListInsert(&L, 1, i);
    }
    ShowList(L);
    printf("长度为:%d\n", ListLength(L));

    //删除节点
    ListDelete(&L, 3);
    printf("删除第3个元素:\n");
    ShowList(L);
    printf("长度为:%d\n", ListLength(L));

    GetElem(L, 6, &e);
    printf("第6个元素的值为%d\n", e);

    printf("元素值为4的位置为:%d\n",GetElemIndex(L, 4));

    printf("清空所有元素\n");
    ClearList(&L);
    ShowList(L);
    printf("长度为:%d\n", ListLength(L));

    if (L)
        printf("只有空的头节点!\n");

    return 0;
}

在这里插入图片描述

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值