Where is a copy made of the contents of the node?
The post code copies a reference to the one node to the other list. So of like this:
String aStr = "asdde";
String bStr = aStr;
bStr and aStr both point to the same String, there wasn't a copy made.
I'm done for tonight. Back tomorrow.