随笔分类 - data structure
摘要:数据结构(双向链表...)操作API list双向链表 . static inline void list_splice(const struct list_head *list, struct list_head *head) 将两个链表拼接,比如:head (2,3),list(4,5) 拼接后
阅读全文
摘要:interval tree interval tree中可以插入完全相同的node,此后interval tree中将会有此两个相同的node 往interval tree中插入两个相同的node后,再根据node的值到interval tree中去搜索,结果是可以找到这两个相同的node,这两个n
阅读全文