阅读背景:

接触到的一些数据结构: LIST_ENTRY, TAILQ

来源:互联网 

双链表:

LIST_ENTRY:

typedef struct _LIST_ENTRY {
  struct _LIST_ENTRY  *Flink;            follow: next entry, header if it is the last entry in the list
  struct _LIST_ENTRY  *Blink;            before: previous entry, header if it is the first entry in the list
} LIST_ENTRY, *PLIST_ENTRY;typedef struct _LIST_ENTRY



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: