摘要: 开始用递归总是说超时,迫不得已改成这个了。 还是得注意细节 void reorderList(ListNode* head) { if(head == NULL || head->next==NULL || head->next->next==NULL) return; int i=1,j; Lis 阅读全文
posted @ 2016-08-26 12:06 李杨阳 阅读(117) 评论(0) 推荐(0)