DEV Community

Discussion on: Singly Linked List: A Python Implementation

 
brainfrz profile image
Terry W

In this case, whatever the calling code was would need to save the head pointer in the calling function and pass it around. This isn't exactly an antipattern as we do need to pass around both a string and its length in some languages like C, but it obviously isn't preferable.

Thread Thread
 
datadeverik profile image
Erik Anderson

Thanks for explaining that for me.