1.1. 单链链表的主体
a. 此处链表的主体包含数据和节点,与linux内核中链表的用法很不一样,详细可以查看内核中链表的使用
b. 链表节点中由真实数据和下个节点指针构成。
struct node { int data; struct node *pNext; };
a. 此处链表的主体包含数据和节点,与linux内核中链表的用法很不一样,详细可以查看内核中链表的使用
b. 链表节点中由真实数据和下个节点指针构成。
struct node { int data; struct node *pNext; };
相关文章: