## Strategy Pattern ##What?Define a family of algorithms, encapsulate each one, and
make them interchangeable. Strategy lets the algorithm
vary independently from the clients that use it. ——GOF定义一系列算...
分类:
其他好文 时间:
2015-07-31 01:22:27
阅读次数:
160
Search Insert Position意:Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be i...
分类:
其他好文 时间:
2015-07-26 17:05:12
阅读次数:
169
课程地址http://v.163.com/special/opencourse/algorithms.html今天课程地址:http://open.163.com/movie/2010/12/G/F/M6UTT5U0I_M6V2T1JGF.html讨论performanceAnalysis of A...
分类:
编程语言 时间:
2015-07-25 19:46:05
阅读次数:
130
Top 10 Algorithms of 20th and 21st CenturyMATH 595 (Section TTA)Fall 2014TR 2:00 pm - 3:20 pm, Room 341 Altgeld HallUniversity of Illinois at Urbana-C...
分类:
其他好文 时间:
2015-07-24 22:16:40
阅读次数:
182
Introduction to Deep Neural NetworksNeural networks are a set of algorithms, modeled loosely after the human brain, that are designed to recognize pat...
分类:
Web程序 时间:
2015-07-22 20:27:07
阅读次数:
117
https://leetcode.com/problemset/algorithms/上面的题目,每天做几道题目,大体从准确率高至低做下去
编程语言为c语言,因为跑的最快…
237
Delete Node in a Linked List
47.8%
Easy
Write a function to delete a node (ex...
分类:
其他好文 时间:
2015-07-20 23:53:13
阅读次数:
293
Rabin-Karp and Knuth-Morris-Pratt Algorithms...
分类:
其他好文 时间:
2015-07-18 14:04:57
阅读次数:
105
TEXT里简单介绍了一下图论和Flood Fill Algorithms,感觉还是很有意义的,可以看看,http://www.wzoi.org/usaco/也是比较正常的翻译了,看起来不是机翻The Castlehttp://www.wzoi.org/usaco/12%5C105.asp大致就是给你...
分类:
其他好文 时间:
2015-07-17 00:22:37
阅读次数:
150
我在中关村图书大厦见到了一本算法书《啊哈!算法》(Aha!Algorithms)实在简单易懂,看了之后简直无地自容,建议大家买来看看,据说还有《啊哈!算法2——伟大思维闪耀时》。讲了,排序(没有哈希很遗憾)、Dijkstra(迪杰斯塔拉)、Bellman-Ford、栈、队列、链表、数据结构体、并查....
分类:
其他好文 时间:
2015-07-11 20:12:04
阅读次数:
246
* 进行数组排序,然后按照贪心策略进行合并,具体是考察
* 下一个元素的start是否是介于当前的start和end之间,
* 如果是,则根据需要更新当前end。
* 时间复杂度(O(nlogn))-->排序, 结果获取O(n)
* 空间复杂度(O...
分类:
其他好文 时间:
2015-07-10 13:36:19
阅读次数:
98