链表的使用

//声明结点类型
    struct node{
        int value;
        struct node *next;
    };
    struct node *first=NULL;  //记录链表开始位置:头指针

first=NULL;

//创建结点
    struct node *new_node;
    new_node=malloc(sizeof(struct node));
    scanf("%d",&new_node->value);
    new_node->next=first;  //头插法
    first=new_node;
//插入结点
    struct node *add_to_list(struct node *list,int n){
        struct node *new_node;
        new_node=malloc(sizeof(struct node));
        if(new_node == NULL){
            printf("Malloc fail.");exit(EXIT_FAILURE);
        }
        new_node->value=n;
        new_node->next=list;
        return new_node;
    }

first=add_to_list(first,10);

//创建链表
    struct node *read_numbers(void){
        struct node *first=NULL;
        int value;
        printf("Enter integers(0-exit):");
        for(;;){
            scanf("%d",&value);
            if(value == 0)
                return first;
            first=add_to_list(first,value);
        }
    }
//搜索链表*****
    strust node *seach_list(struct node *list,int value){
        struct node *p;
        for(p=list ; p != NULL; p=p->next){
            if(p->value==value)
                return p;
        }
        return NULL;
    }

删除结点

        定位要删除的结点;

        改变前一个结点,使她“绕过”删除结点;

        调用free函数收回删除结点的内存空间;

//删除结点
    struct node *delete_from_list(struct node *list,int value){
        struct node *cur,*prev;
        for(cur=list,prev=NULL;cur != NULL && cur->value != value;prev=cur,cur=cur->next)
            ;
        if(cur == NULL) return list;
        if(prev == NULL) list=list->next;
        else
            prev->next=cur->next;
        free(cur);
        return list;
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

511511511

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值