当前位置:   article > 正文

双向链表基本操作(C语言)_c语言双向链表的使用

c语言双向链表的使用
#include <stdio.h>
#include <stdlib.h>
#include<stdbool.h>

//双向链表
typedef int Elemtype;
typedef struct DNode
{
    Elemtype data;
    struct DNode *prior,*next;
} DNode,*DLinkList;


//尾插法创建链表
DLinkList CreateList()
{
    int x;
    DLinkList head=(DLinkList)malloc(sizeof(DLinkList));//创建双向链表,头节点
    DNode* p=head,*s;//p为遍历节点,s为当前节点
    p->prior=NULL;
    printf("创建链表,输入9999表示结束\n");
    scanf("%d",&x);
    while(x!=9999)
    {
        s=(DNode*)malloc(sizeof(DNode*));
        s->data=x;
        s->prior=p;
        p->next=s;
        p=s;
        scanf("%d",&x);
    }
    s->next=NULL;//不要忘记制空尾指针
    return head;//返回头节点
}

//遍历链表
void PrintList(DLinkList L)
{
    DNode *p;
    p=L->next;//找到头节点下一个节点
    printf("链表元素如下:\n");
    while(p)
    {
        printf("%d<---->",p->data);
        p=p->next;
    }
    printf("\n");
}

//双链表头插法
DLinkList InsertListHead(DLinkList L,Elemtype e)
{
    DNode *p=(DNode*)malloc(sizeof(DNode*));
    p->data=e;
    p->prior==L;
    p->next=L->next;
    if(p->next!=NULL)
    {
        L->next->prior=p;
    }
    L->next=p;
    return L;
}
//队尾插入
DLinkList InsertListTail(DLinkList L,Elemtype e)
{
    DNode *s=(DNode*)malloc(sizeof(DNode*));//s为待插入节点
    DNode *p=L->next;//p为遍历节点
    while(p->next)
    {
        p=p->next;
    }
    p->next=s;
    s->data=e;
    s->prior=p;
    s->next=NULL;
    return L;
}

//获取链表长度
int GetLength(DLinkList L)
{
    int len=0;
    DNode *r=(DNode*)malloc(sizeof(DNode*));
    r=L->next;
    while(r)
    {
        r=r->next;
        len++;
    }
    return len;
}

//在指定位置插入节点
bool  InsertPosition(DLinkList L,int pos,Elemtype e)
{

    if(pos<1||pos>GetLength(L)+1)return false;
    DNode *r,*n;//r遍历节点
    n=(DNode*)malloc(sizeof(DNode*));//插入节点
    n->data=e;
    n->next=NULL;
    r=L;
    while(--pos>0)
    {
        r=r->next;
    }

    if(r->next==NULL) //在结尾插入
    {
        r->next=n;
        n->prior=r;
        return true;
    }
    n->next=r->next;
    r->next->prior=n;
    r->next=n;
    n->prior=r;
    return true;
}
//删除指定节点元素
bool DeletePosition(DLinkList L,int pos,Elemtype *e)
{
    if(pos<1||pos>GetLength(L))return false;
    DNode *r=L,*p;//r遍历节点,p为待删除节点
    while(--pos)
    {
        r=r->next;
    }
    p=r->next;
    *e=p->data;
    if(p->next==NULL)
    {
        r->next=NULL;
        free(p);
        return true;
    }
    r->next=p->next;
    p->next->prior=r;
    free(p);
    return true;

}
int main()
{
    DLinkList L=CreateList();
    PrintList(L);
    printf("头插入节点\n");
    InsertListHead(L,-1);
    PrintList(L);
    printf("尾插法插入节点\n");
    InsertListTail(L,-1);
    PrintList(L);
    printf("链表长度  %d\n",GetLength(L));
    printf("在指定位置插入元素\n");
    InsertPosition(L,5,-99);
    PrintList(L);
    printf("删除指定位置元素\n");
    int *e;
    DeletePosition(L,5,e);
    printf("删除元素为:%d\n",*e);
    PrintList(L);



    return 0;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/636476
推荐阅读
相关标签
  

闽ICP备14008679号