摘要: http://www.zhizhihu.com/html/y2011/2993.htmlhttp://www.cnblogs.com/emanlee/archive/2011/12/07/2278830.html 阅读全文
posted @ 2015-06-29 15:34 Chapter 阅读(278) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/kevin_darkelf/article/details/29810519http://blog.csdn.net/zhoubl668/article/details/7321012 阅读全文
posted @ 2015-06-29 14:33 Chapter 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 问题描述输入一个整形数组和K,输出数组中前K大的元素们。解决思路思路1:排序如果用快排,平均时间复杂度为O(nlogn),最坏时间复杂度为O(n^2);空间复杂度为O(logn)~O(n);如果用堆排,时间复杂度为O(nlogn),空间复杂度为O(1).注意:Java中Arrays.sort()方法... 阅读全文
posted @ 2015-06-29 11:52 Chapter 阅读(123) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/renfufei/article/details/16359297 阅读全文
posted @ 2015-06-29 10:40 Chapter 阅读(140) 评论(0) 推荐(0) 编辑