链表节点交换?
傻呼呼的我在被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
暂无评论内容