資料結構之核心鍊錶

2021-09-03 01:44:26 字數 1807 閱讀 9312

核心鍊錶設計的非常巧妙,但也不是什麼難理解的內容,關於核心鍊錶的介紹網上有很多,這裡就不贅述了,來個使用的例子吧。

list.h

#ifndef hs_kernel_list_h

#define hs_kernel_list_h

#define offsetof(type, member) ((size_t) &((type *)0)->member)

#define container_of(ptr, type, member) \

(type *)( (char *)ptr - offsetof(type,member) )

struct list_head ;

#define list_head_init(name)

#define list_head(name) \

struct list_head name = list_head_init(name)

static inline void init_list_head(struct list_head *list)

static inline void __list_add(struct list_head *new,

struct list_head *prev,

struct list_head *next)

static inline void list_add(struct list_head *new, struct list_head *head)

static inline void __list_del(struct list_head * prev, struct list_head * next)

static inline void __list_del_entry(struct list_head *entry)

static inline void list_del_init(struct list_head *entry)

#define list_entry(ptr, type, member) \

container_of(ptr, type, member)

#define __list_for_each(pos, head) \

for (pos = (head)->next; pos != (head); pos = pos->next)

#endif

main.c

#include #include #include "list.h"

#define namesize 32

struct score ;

void print_s(void *data)

int main(void)

__list_for_each(cur, &list)

#if 0

__list_for_each(cur, &list)

}printf("\n");

__list_for_each(cur, &list)

#endif

__list_for_each(cur, &list)

}printf("\n");

if (cur == &list) else

return 0;

}

編譯gcc main.c 

執行結果

資料結構 表之煉表

頭插法建立 尾插法建立 顯示 銷毀 include include using namespace std typedef int elemtype typedef struct lnode linklist void createlinklistf linklist l,elemtype a,in...

資料結構之鍊錶

頭結點 第乙個有效結點之前的那個結點 頭結點並不存有效資料 加頭結點的目的主要是為了方便對鍊錶的操作 頭指標 指向頭結點的指標變數 尾指標 指向尾節點的指標變數 如果希望通過乙個函式對鍊錶進行處理,只需要乙個引數 頭指標 首先要定義乙個單鏈表儲存結構 然後建立乙個空表,即初始化,我寫的這個提前設定好...

資料結構之鍊錶

鍊錶是一種基本的資料結構型別,它由乙個個結點組成。每乙個結點包括乙個資料的儲存和乙個指向下乙個結點的引用。在這個定義中,結點是乙個可能含有任意型別資料的抽象實體,它所包含的指向結點的應用顯示了它在構造鍊錶之中的作用。和遞迴程式一樣,遞迴資料結構的概念一開始也令人費解,但其實它的簡潔性賦予了它巨大的價...