摘要: Sort ListSort a linked list inO(nlogn) time using constant space complexity.要求时间复杂度为O(nlogn),那么不能用quickSort了(最坏O(n^2)),所以使用mergeSort.通常写排序算法都是基于数组的,这题... 阅读全文
posted @ 2014-06-01 20:31 陆草纯 阅读(4535) 评论(1) 推荐(0) 编辑
摘要: Merge Sorted ArrayGiven two sorted integer arrays A and B, merge B into A as one sorted array.Note: You may assume that A has enough space (size that ... 阅读全文
posted @ 2014-06-01 00:01 陆草纯 阅读(235) 评论(0) 推荐(0) 编辑