繁荣红牛

文章
4
资源
0
加入时间
3年0月20天

内核数据结构:链表,队列,映射二叉树

链表代码在中声明,其数据结构很简单:struct list_head {            struct list_head *next;            struct list_head *prev;};#define LIST_HEAD_INIT(name) { &(name), &(name) }#define LIST_HEAD(name) \ str