Sort List
摘要:
Sort a linked list inO(nlogn) time using constant space complexity.思路:归并排序。题目要求固定空间,不知道这种递归实现的算不算固定空间。代码: 1 ListNode *sortList(ListNode *head, int length){ 2 if(length next;14 }15 half = tmp->next;16 tmp->next = NULL;17 ListNode *first = sortList(head, l),... 阅读全文
posted @ 2013-12-02 19:47 waruzhi 阅读(189) 评论(0) 推荐(0) 编辑