flâneur — a map of the web's best reading

Intrusive linked lists - Data structures in practice

data-structures-in-practice.com · 2,290 words · saved by 1 readers

This post will teach you what intrusive linked lists are and how they are used to manage processes in Linux.

This post will teach you what intrusive linked lists are and how they are used to manage processes in Linux. What are intrusive linked lists? Intrusive linked lists are a variation of linked lists where the links are embedded in the structure that's being linked. In a typical linked list implementation, a list node contains a data pointer to the linked data and a next pointer to the next node in the list. Figure 1: A linked list In an intrusive linked list implementation, the list node contains next pointer to the next list node, but no data pointer because the list is embedded in the linked o

Explore this link on the map →

saved by

related reading