When we write a linked list program in C++, It will give us all operations that we can perform on a linked list like insertion,deletion,search etc. But once we exit out of the program what happens to the created list then?
If we write all the data to a file then is there a way we can reconstruct the same linked list we created before we exited the program which will again give us all the operations in the same time complexities?