题目:输入两个递增排序的链表,合并这两个链表并使新链表中的结点仍然时按照递增排序的。
链表结点定义如下:
struct ListNode { int val; ListNode* next; };
参见LeetNode-Merge Two Sorted Lists。