I study algorithms and ATD (abstract data types). And suddenly it dawned on me: what about ADT stored on the HDD? For example, a linked list:
struct Node { Item item; Node *next; } After all, it is only a pointer in the memory pointer. Honestly, I could not correctly formulate the question and, accordingly, find the literature on this issue. Tell me. According to the databases in the literature, this issue, it seems, is not covered. As trees, lists and TP structures are displayed in files. Where, in what book is this question covered in detail?