posted @ 2013-07-26 19:12 冰天雪域 阅读(174) 评论(0) 推荐(0) 编辑
摘要:
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */class Solution {public: ListNode *mergeTwoLists(ListNode *l1, ListNode *l2) { // Start typing your C/C++ solution below // DO NOT wr... 阅读全文