Skiplist-CPP
A tiny KV storage based on skiplist written in C++ language
Skiplist-CPP is a lightweight key-value storage engine implemented in C++ using a skip list as its core data structure. It showcases how a log-structured, ordered index can deliver fast inserts, lookups, and deletes while remaining simple to implement and reason about. The project supplies a compact codebase with a clear separation between the skip list implementation and the storage operations that use it. Beyond in-memory operations, it demonstrates persistence through data dump to disk...