数据结构(双向链表...)操作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,只是一个链表头,则不进行拼接
2023-10-09 17:59:40
. 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,只是一个链表头,则不进行拼接