主要来自 Scala 语言发明人 Martin Odersky 教授的 Coursera 课程 《Functional Programming Principles in Scala》。 3. Data and Abstraction 3.1 Class Hierarchies 这一集字幕不同步-, ...
分类:
其他好文 时间:
2016-03-29 19:32:33
阅读次数:
252
我看的书是《敏捷软件开发:原则、模式与实践》是2003 年9月清华大学出版社出版的图书. 原书名: Agile Software Development: Principles, Patterns, and Practices 这本书的重要内容: ●讲述在预算和时间要求下,软件开发人员和项目经理如何 ...
分类:
其他好文 时间:
2016-03-27 19:42:39
阅读次数:
119
//Nine one two three four five six seven eight 题目1010:A + B 时间限制:1 秒内存限制:32 兆 题目描述: 读入两个小于100的正整数A和B,计算A+B. 需要注意的是:A和B的每一位数字由对应的英文单词给出. 输入: 测试输入包含若干测试 ...
分类:
其他好文 时间:
2016-03-27 09:41:36
阅读次数:
186
Count the number of k's between 0 and n. k can be 0 - 9. if n=12, k=1 in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], we have FIVE 1's(1, 10, 11, 12)
分类:
其他好文 时间:
2016-03-18 13:24:35
阅读次数:
156
原文:http://tech.meituan.com/deep-understanding-of-ffm-principles-and-practices.html 深入理解FFM原理与实践 del2z, 大龙 ·2016-03-03 09:00 FM和FFM模型是最近几年提出的模型,凭借其在数据量
分类:
其他好文 时间:
2016-03-03 14:45:29
阅读次数:
307
course link: https://class.coursera.org/fmri1-001 ? T1 time WM = 600; GM = 1000; CSF = 3000. ? Time term TR: how often we excite the nuclei; TE: how s
分类:
其他好文 时间:
2016-02-15 19:46:32
阅读次数:
212
今天我们来讲讲c++11中引入了两个新东西 1.move constructor(移动构造函数) 2.move assignment(移动赋值) Rule of three现在变成了Rule of five(多了上面说的两个东东) class rule_of_five { char* cstring
分类:
移动开发 时间:
2016-02-15 16:22:20
阅读次数:
220
# Compilers Principles# reading notes# 2016.02.03# victor1 引论1.1 编译流程 begin: 源程序 # front end: 与源代码有关 A.字符流-->[词法分析]--> B.符号流-->[语法分析]--> C.语法树-->[语义分析
分类:
其他好文 时间:
2016-02-05 12:00:18
阅读次数:
136
阅读资料来源:官方Swift2.0教程中文版 今天学习了Swift的枚举类型,以下是内容和总结: 使用 enum 来创建枚举。像类一样,枚举也可以包含方法。 enum Rank: Int { case Ace =1 case Two, Three, Four, Five, Six, Seven, E
分类:
编程语言 时间:
2016-02-01 01:52:32
阅读次数:
185
原文地址(original source):http://lapwinglabs.com/blog/principles-of-an-ideal-database-client当我们在构建Gittask时,注意到了一些抽象漏洞【注1】,尤其是在我们的数据库客户端。我们不得不编写一些样板来处理类型转换...
分类:
数据库 时间:
2016-01-23 21:23:14
阅读次数:
172