Skip to content
Advertisement

Better way to reverse a linkedlist in javascript

I tried this:

JavaScript

And my Node class:

JavaScript

here head is the main LinkedList’s head, and HEAD is the head of new one. I’m using stack here. And the algorithm is in linear complexity.

Instead of creating new Node everytime, I think there is some better way to implement this. Can you suggest some other ways? Also is it possible to use queue here to achieve this?

Advertisement

Answer

If you wish to reverse the list iteratively, we

  • Capture current node’s next node in some other temp variable.

  • Make current node’s next point to previous node.

  • Store current Node as the previous one.

  • Move to next node with the help of temp node captured in 1st step.

  • Repeat from step 1 again.

Snippet:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement