码迷,mamicode.com
首页 >  
搜索关键字:can you find    ( 66487个结果
Configurate vim tool
vim toolis a commom editor, for the sake of improving effeicient, it is necessary to configurate vim config file. The following comands will help you....
分类:其他好文   时间:2014-04-29 17:58:49    阅读次数:502
《Cracking the Coding Interview》——第17章:普通题——题目8
2014-04-28 23:35题目:最大子数组和问题。解法:O(n)解法。代码: 1 // 17.8 Find the consecutive subarray with maximum sum in an array. 2 // O(n) online algorithm. 3 #include...
分类:其他好文   时间:2014-04-29 16:35:28    阅读次数:429
《Cracking the Coding Interview》——第17章:普通题——题目9
2014-04-28 23:52题目:设计算法,找出一本书中某个单词的出现频率。解法:数就行了。代码: 1 // 17.9 Given a book, find out the occurrences of any given words in it. 2 // Answer: 3 // 1....
分类:其他好文   时间:2014-04-29 16:00:32    阅读次数:388
A quest for the full InnoDB status
When running InnoDB you are able to dig into the engine internals, look at various gauges and counters, see past deadlocks and the list of all open tr...
分类:数据库   时间:2014-04-29 15:41:04    阅读次数:686
悟以往只不谏,念来者之可追
1.To survive among the ordinary,you must be strong and independent!2.Be a unique person and develop skills so that nobody can replace you!3.Since nans...
分类:其他好文   时间:2014-04-29 15:37:58    阅读次数:567
《Cracking the Coding Interview》——第17章:普通题——题目12
2014-04-29 00:04题目:给定一个整数数组,找出所有加起来为指定和的数对。解法1:可以用哈希表保存数组元素,做到O(n)时间的算法。代码: 1 // 17.12 Given an array of integers and target value, find all pairs in ...
分类:其他好文   时间:2014-04-29 15:08:13    阅读次数:469
A Step-by-Step Guide to Your First AngularJS App
What is AngularJS?AngularJS is a JavaScript MVC framework developed by Google that lets you build well structured, easily testable, and maintainable f...
分类:移动开发   时间:2014-04-29 14:32:23    阅读次数:971
《Cracking the Coding Interview》——第18章:难题——题目7
2014-04-29 03:05题目:给定一个词典,其中某些词可能能够通过词典里其他的词拼接而成。找出这样的组合词里最长的一个。解法:Leetcode上有Word Break这道题,和这题基本思路一致。代码: 1 // 18.7 Given a list of words, find out the...
分类:其他好文   时间:2014-04-29 14:30:17    阅读次数:493
《Cracking the Coding Interview》——第18章:难题——题目6
2014-04-29 02:27题目:找出10亿个数中最小的100万个数,假设内存可以装得下。解法1:内存可以装得下?可以用快速选择算法得到无序的结果。时间复杂度总体是O(n)级别,但是常系数不小。代码: 1 // 18.6 Find the smallest one million number....
分类:其他好文   时间:2014-04-29 14:27:13    阅读次数:665
Using MySQL Connector .NET 6.6.4 with Entity Framework 5
I had been waiting for the latest MySQL connector for .NET to come out so I can move on to the new and sleek Visual Studio 2012 for my projects. Found...
分类:数据库   时间:2014-04-29 14:17:54    阅读次数:753
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!