摘要:
struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; class Solution { public: void reorderList(ListNode* head) { if(head == nullptr) return; int size = 0; ... 阅读全文
posted @ 2016-03-19 07:14
做个不善的人
阅读(217)
评论(0)
推荐(0)