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