Showing posts with label LinkedList. Show all posts
Showing posts with label LinkedList. Show all posts

Wednesday, January 1, 2014

[LeetCode] Merge Two Sorted List

C++ code colored by C++2HTML
Problem : Merge Two Sorted List

Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.

Analysis:
Not a difficult problem. But make clear whether we need a new (created) list, or just the merged one.
A dummy node at first will be very helpful and no need to worry about how to get the pointer to the first node.