williamfiset / DEPRECATED-data-structures

A collection of powerful data structures
MIT License
2.85k stars 1.27k forks source link

Remove unnecessary variable assignment #40

Open nsuthison opened 4 years ago

nsuthison commented 4 years ago

Since Java uses pass by value even if the object is a reference type, so when you set node = null here is gonna effect only in the local scope.

nsuthison commented 4 years ago

Ps. Thank you for your course, it really helps me understanding data structure more and also more efficient in recursive function which I lack :)