1 / 6

Linked Lists Memory Tips

Learn important tips for managing memory in linked lists. Nodes are created on the heap and tracked with pointers. When creating new nodes, remember that a pointer is required to store the address. Be mindful of deleting nodes to avoid losing track of memory allocation. Ensure one delete operation per new node, not per pointer used.

ellenlopez
Download Presentation

Linked Lists Memory Tips

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Linked ListsMemory Tips

  2. Node Use • Linked List Nodes: • Nodes created on heap, tracked w/pointer

  3. Nodes, New & Pointers • new requires a pointer to store address

  4. Nodes, New & Pointers • new requires a pointer to store address • Not every pointer requires new memory

  5. Delete • Must delete node before we lose track of it

  6. Delete • One delete per new, not per pointer

More Related