struct llist_element {
struct llist_element * next;
void * data;
};
typedef struct llist_element llist_elm;
llist_elm是一个链表型结点。
typedef struct {
llist_elm * head;
llist_elm * tail;
} llist;
llist结构体中有两个链表结点。
struct llist_element {
struct llist_element * next;
void * data;
};
typedef struct llist_element llist_elm;
llist_elm是一个链表型结点。
typedef struct {
llist_elm * head;
llist_elm * tail;
} llist;
llist结构体中有两个链表结点。