persistent data structure

A persistent data structure is a data structure that preserves the previous versions of itself when modified, allowing access to both the original and modified versions simultaneously. This enables efficient time travel operations and can be beneficial for tasks like undo functionality in applications.

Requires login.