
Algorithm
文章平均质量分 62
iteye_5599
这个作者很懒,什么都没留下…
展开
-
[Leetcode] Jump Game II
题目: Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maximum jump length at that position. Your ...原创 2015-06-19 16:00:24 · 116 阅读 · 0 评论 -
快速排序
转自 http://blog.youkuaiyun.com/morewindows/article/details/6684558 快速排序由于排序效率在同为O(N*logN)的几种排序方法中效率较高,因此经常被采用,再加上快速排序思想----分治法也确实实用 优点之一就是可以原地排序,空间复杂度低 快速排序是C.R.A.Hoare于1962年提出的一种划分交换排序。它采用了一种分治的策...原创 2015-08-26 15:27:37 · 145 阅读 · 0 评论