数据结构(双向链表...)操作API
Posted aspirs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据结构(双向链表...)操作API相关的知识,希望对你有一定的参考价值。
数据结构(双向链表...)操作API
list双向链表
. static inline void list_splice(const struct list_head *list, struct list_head *head)
将两个链表拼接,比如:head (2,3),list(4,5)
拼接后:
head(4,5,2,3)
如果list链表里没有node,只是一个链表头,则不进行拼接
以上是关于数据结构(双向链表...)操作API的主要内容,如果未能解决你的问题,请参考以下文章