哈希鏈表及其變種

前言   先來直觀的比較下普通鏈表和哈希鏈表:html     普通鏈表   普通鏈表的表頭和節點相同java struct list_head { struct list_head *next, *prev; };   哈希鏈表   哈希鏈表頭node struct hlist_head { struct hlist_node *first; }; 哈希鏈表節點數據結構 stru
相關文章
相關標籤/搜索