【C】链表节点交换

链表节点交换?

傻呼呼的我在被XZH嘲笑用结构体内容交换之后,我下定决心自己研究以下链表节点交换!

以下是我的研究成果

//链表节点交换
void swap(item *pre,item *mid,item *last){
item *lastest=last->next;
pre->next=last;
last->next=mid;
if(lastest!=NULL){
mid->next=lastest;
}
else{
mid->next=NULL;
}
return ;
}

其实传进一个pre就行,根据next找下一个即可。

© 版权声明
THE END
点赞13 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容