合并两个有序的链表 (C++实现)
两个链表都是有序的,合并它们 struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; class Solution {public: ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) { ListNode * pHeader = new ListNode(-1);