链表第一二题

本文介绍了使用C语言实现的链表操作,包括List_HeadInsertv2()函数进行头插入,List_TailInsert()实现尾部插入,以及DeleteAllX()和DeleteAllXv2()函数用于删除所有特定值的节点。通过示例展示了如何创建链表并进行基本操作。
摘要由CSDN通过智能技术生成
#include <stdio.h>
#include <stdlib.h>


#define false 0
#define true 1
typedef struct
{
    int data;
    struct LNode *next;
}LNode,*LinkList;

LinkList  List_HeadInsertv2(LinkList  L)
{
    int  x;
    L=(LNode *)malloc(sizeof(LNode));
    L->next=NULL;

    scanf("%d",&x);
    while(x!=999)
    {
        LNode *q=(LNode *)malloc(sizeof(LNode));
        q->next=L->next;
        q->data=x;
        L->next=q;
        scanf("%d",&x);

    }

    return L;
}
LinkList  List_HeadInsert(LinkList  L)
{
    int  x;

    if(L==NULL)
    {
        scanf("%d",&x);
        if(x!=999)
        {
            L=(LinkList)malloc(sizeof(LNode));
            L->data=x;
            L->next=NULL;
        }
        else return L;
    }
    scanf("%d",&x);
    while(x!=999)
    {
        LNode *q=(LNode *)malloc(sizeof(LNode));
        q->next=L;
        q->data=x;
        L=q;
        scanf("%d",&x);

    }

    return L;
}
LinkList List_TailInsert(LinkList L)
{
    int  x;
    LNode * p;
    if(L==NULL)
    {
        scanf("%d",&x);
        if(x!=999)
        {
            L=(LinkList)malloc(sizeof(LNode));
            L->data=x;
            L->next=NULL;
            p=L;
        }
        else return L;
    }
    scanf("%d",&x);

    while(x!=999)
    {
        LNode * q=(LNode *)malloc(sizeof(LNode));
        q->data=x;
        q->next=NULL;
        p->next=q;
        p=q;
        scanf("%d",&x);

    }
    return L;
}
LinkPrint(LinkList L)
{
    LNode * p=L->next;
    if(p==NULL)
    {
        printf("\n");
    }
    while(p!=NULL)
    {
        printf("%d;;",p->data);
        p=p->next;
    }
}
_Bool DeleteAllX(LinkList * L,int x)
{
    LNode *p=*L;
    if(*L==NULL)
    {
        return ;
    }
    if((*L)->data==x)
    {
        p=*L;
        *L=(*L)->next;
        free(p);
        DeleteAllX(L ,x);

    }
    else  if((*L)->data!=x)
    {
        DeleteAllX(&((*L)->next) ,x);
    }

}
_Bool DeleteAllXv2(LinkList  *L,int x)
{
    LNode *p=*L;
    if(*L==NULL)
    {
        return ;
    }
    if((*L)->data==x)
    {
        p=*L;
        *L=(*L)->next;
        free(p);
        DeleteAllX(L ,x);

    }
    else  if((*L)->data!=x)
    {
        DeleteAllX(&((*L)->next) ,x);
    }
}
int main()
{
    LinkList L;
    L=NULL;
    L=List_HeadInsertv2(L);
    LinkPrint(L);
    printf("\n");
    //DeleteAllX(&L,3);
    DeleteAllXv2(&(L->next),3);
    LinkPrint(L);
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值