整理的链表几种插入方式一之从前面插入(C语言)

本文介绍了如何在C语言中实现链表的从前插入操作,包括在头节点和非头节点处插入。主要代码集中在`insertFromhead`函数,该函数检查是否为头节点插入,如果不是,则遍历链表寻找合适位置进行插入。
摘要由CSDN通过智能技术生成

前面我总结了从中间节点插入,这次总结一个从头部来插入
struct Test
{
int data;
struct Test *next;
}

struct Test *insertFromhead(struct Test *head,int data,struct Test *new)
{
if(head->data == data){//头节点
new->next = head;
return new;//直接从链表头插入
}
while(head->next!=NULL){//非头节点插入
if(head->next->data ==data){
new->next = head->next;
head->next = new;
}
head = head->next;
}
}

int main()
{
struct Test t1 = {1,NULL};
struct Test t2 = {2,NULL};
struct Test t3 = {3,NULL};
struct Test t4 = {4,NULL};
struct Test *head=NULL;

    head=&t1;
    t1.next = &t2;
    t2.next = &t3;
    t3.next = &t4;

    struct Test new = {100,NULL};
    printf("please use t1 to printf the num :\n");
    p
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值