摘要: 牛客中的代码是这样的:struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { }}; ListNode* Merge(ListNode* pHe... 阅读全文
posted @ 2016-03-31 16:58 Li_Ning 阅读(292) 评论(0) 推荐(0) 编辑