C语言学习笔记(一):链表的创建、遍历、插入和删除

结构体定义:

struct Node{
    int data;
    struct Node *next;
};

链表的创建:

struct Node* initLink()
{
    struct Node *head;
    struct Node *tail;
    struct Node *newNode;

    head=(struct Node*)malloc(sizeof(struct Node));
    head->next=NULL;
    head->data=0;
    tail=head;

    int i;

    for(i=1;i<=10;i++)
    {
        newNode=(struct Node*)malloc(sizeof(struct Node));
        newNode->next=NULL;
        newNode->data=i;

        tail->next=newNode;
        tail=newNode;
    }
    return head;
}

链表的遍历:

void printLink(struct Node *head)
{
    struct Node *p;
    p=head;

    while(p!=NULL)
    {
        printf("data=%d\n",p->data);
        p=p->next;
    }
}

链表的插入:

void insertNode(struct Node *head,int weizhi,struct Node *node)
{


    struct Node *p;
    p=head;
    while(p!=NULL)
    {
        if(p->data==weizhi)
        {
            node->next=p->next;
            p->next=node;
        }
        p=p->next;
    }
}

链表的删除:

int delateNode(struct Node *head,int data)
{
    struct Node *p;
    struct Node *tmp;

    p=head;
   
    while(p!=NULL && p->next !=NULL)
    {
        if(p->next->data == data)
        {
            break;
        }
        p=p->next;
    }
    if(p->next==NULL)
    {
        return -1;
    }
    tmp=p->next;
    p->next=tmp->next;
    free(tmp);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值