Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Computer Science Introduction to Data Structures Building a Linked List Removing a Node

leonardo valdes
leonardo valdes
12,384 Points

You don't have to free the memory taken up by the removed node?

I have written Linked Lists in C++, where their removal functions require delete statements to free up the space that the node was using. Do we not need to free up the space when we remove the node in Python? Because even though we've cut the node off from the list, it still exists somewhere in memory, does it not?

1 Answer

Hey Leonardo,

Python has a built-in garbage collector that will free up the memory for you... as long as you don't have any circular references... in which case, you can manually invoke the garbage collector with, IIRC, something like gc.collect().