nitinpuranik / Disk-Based-Linked-List

An implementation of a persisted linked list data structure. (Singly linked list, C++). Along with the normal operations of regular memory based linked list operations, we now have the capability of storing the lists onto the disk and be able to recreate it again. The serialization logic / disk-format has been written by hand without library support. This project also practised memory reuse by recycling bytes from a memory pool (Placement new).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nitinpuranik/Disk-Based-Linked-List Stargazers