机智香烟

文章
2
资源
0
加入时间
2年10月17天

合并两个有序的链表 (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);