I'm doing a homework assignment for class. I'm stuck on clearing the entire LinkedList. I know I could just use the remove method in my ListIterator and through a loop or two remove the nodes. However this doesn't seem very efficient. I'm curious if I simply set head and tail to null, would this isolate the nodes and tell garbage collector ...