没有关于erlang interface ,继续寻找吧。。。-----------------------------------------------------------------http://wgcode.iteye.com/blog/1018614第二章 入门1.所有的变量都必须以大写...
分类:
其他好文 时间:
2015-01-25 16:32:36
阅读次数:
370
1 月 15 号参加了小米产品发布会,正当雷军在台上讲小米 Note 的种种功能时我却突然意识到小米、华为、联想的拼杀到了 2015 年已经完全进入到了一个新的阶段。在功能和体验上诚然大家会激烈的彼此追赶但其实已经拉不开太多的距离,最终决定胜负的很可能是手机背后所体现出来的模式。这很像一场国战,.....
分类:
移动开发 时间:
2015-01-24 21:23:53
阅读次数:
218
AnagramsGiven an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.anagrams特点:单词里的字母的种类和数目是一样的,只...
分类:
其他好文 时间:
2015-01-24 17:15:00
阅读次数:
142
Given a list of non negative integers, arrange them such that they form the largest number.
For example, given [3, 30, 34, 5, 9], the largest formed number is
9534330.
Note: The result may be very ...
分类:
其他好文 时间:
2015-01-24 14:29:39
阅读次数:
137
1、快照(snapshots) 附录:redis默认配置文件# Redis configuration file example# Note on units: when memory size is needed, it is possible to specify# it in the usu....
分类:
其他好文 时间:
2015-01-24 14:19:40
阅读次数:
222
Factorial Trailing Zeroes2015.1.23 18:46Given an integern, return the number of trailing zeroes inn!.Note:Your solution should be in logarithmic time ...
分类:
其他好文 时间:
2015-01-23 19:55:02
阅读次数:
459
Given a binary tree, return theinordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1,3,2].Note...
分类:
其他好文 时间:
2015-01-23 17:46:36
阅读次数:
121
1.关于SQL查询效率,100w数据,查询只要1秒,与您分享:机器情况p4: 2.4内存: 1 Gos: windows 2003数据库: ms sql server 2000目的: 查询性能测试,比较两种查询的性能SQL查询效率 step by step-- setp 1.-- 建表create ...
分类:
数据库 时间:
2015-01-23 12:58:01
阅读次数:
235
mysql 全文索引
注意 并非所有的引擎都支持 全文检索
mysql最常用的引擎 INnodb 和 myisam 后者支持全文检索 前者不支持
创建表的时候指定要检索列
CREATE TABLE TEST_FULLTEXT(note_id int not null auto_increment,note_text text null,
primaty key(...
分类:
数据库 时间:
2015-01-22 13:26:40
阅读次数:
232
打开redis.conf文件:# By default Redis does not run as a daemon. Use 'yes' if you need it.# Note that Redis will write a pid file in /var/run/redis.pid whe...
分类:
其他好文 时间:
2015-01-22 10:48:19
阅读次数:
226