Removal in LinkedList

while removing the element from linklist .do we not need to delete the dynamic node made in java?

@RULEREMPIRES,

Java , unlike C++ , has a garbage collector to get rid of unreferenced places in memory, So yes it will be made free (although not necessarily immediately).