Linked list with persistance

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • raj kapoor
    New Member
    • Nov 2011
    • 1

    Linked list with persistance

    i have a linked list program and now want to make it a persistant linked list,but am not able to do so.can anyone help me in this..

    thank you.
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    What do you mean by persist?

    If you mean the list needs to be remembered between program runs, i.e. stored while the program is not running, then you will need to store it to disk in a file. Just remember not to store pointer values which will have no meaning between 2 different instances of the program running.

    Comment

    Working...