Merge Two Sorted Lists

Posted on

Screen Shot 2015-10-13 at 2.27.32 PM

Idea:

Use pointers and seudo head as good helpers

Build movable pointers for each action node, like the current pointers for both lists and the current head

Be careful about the tail node. When one of the list hits the null, is it the real end?

Leave a comment