Remove a node in LinkList (python) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Remove a node in LinkList (python)

I have a Linklist: a -> b -> c. I want to remove node "b". I will update link of node "a" from "b" to "c". Mean: a -> c. What about node "b"? Is it delete automatically? Do I have to update link of node "b" to Null? Thanks!

9th Sep 2020, 2:44 AM
Sàm Sàm Channel !
Sàm Sàm Channel ! - avatar
4 Answers
+ 10
Josh Greig yes I was talking about C/C++ or general algorithm for it not specific to any language. I searched for python and I think memory of b will get free automatically by garbage collector as no reference to node b will be left. no need to worry about memory leaks, It is nice I was not knowing about it earlier. https://stackabuse.com/basics-of-memory-management-in-python/ https://medium.com/datadriveninvestor/how-does-memory-allocation-work-in-python-and-other-languages-d2d8a9398543
10th Sep 2020, 5:12 AM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 10
You firstly need to get to node a and store a.next which is reference to b in some temp variable. Then temp = temp.next; for making next element to a as c. Then you can free memory of b whose reference is in temp variable if you want. Or directly a.next = a.next.next; if you don't want to free space taken by b node.
9th Sep 2020, 6:53 AM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 3
No. You don't need to do anything to b after a points to c. I assume you have a singly linked list. In other words, you have a "next" property on each node but you don't have a previous. If you had a back link or previous link you'd also need to link c to a directly too. Either way, no updates to b are needed.
9th Sep 2020, 2:58 AM
Josh Greig
Josh Greig - avatar
+ 1
Gaurav, how would you free the memory in Python? Maybe you're thinking of c or c++. The question mentions Python and is tagged with Python.
9th Sep 2020, 8:37 PM
Josh Greig
Josh Greig - avatar