第一章和第三章已经开始翻译中,
第二章和第四章还等待认领。
协同翻译继续招募中
Embedded_Android_in_Chinese
描述:
co-work QQ群: 15997841book pdf 文档位于source/下面,请依据这个文档进行翻译
当前进度
章节认领中......
github参与简明流程
初...
分类:
移动开发 时间:
2014-09-22 18:22:23
阅读次数:
306
配置说明$config['language']:指定项目语言包。需要注意的时Codeigniter自带的类库错误提示语言包位于/system/language/english/目录下,当这里配置非english时, 如果需要用到这些类库,则需要拷贝语言包到指定的目录中,否则会出现load出错。$co...
分类:
其他好文 时间:
2014-09-22 15:54:12
阅读次数:
225
题目大意:有长度为N的颜色段,共有m种颜色,要将其划分成若干段,每一段的费用为这一段的不同颜色的数目的平方。求最小总费用。
Sol:
首先我们注意到答案不超过n,因为我们显然可以将每一个划分为一段,答案为n.
于是每一段的颜色总数不超过sqrt(n).
因此我们维护最后出现的sqrt(n)种颜色最后出现的位置,进行转移。
总的时间复杂度为O(n*sqrt(n)).
Co...
分类:
其他好文 时间:
2014-09-22 10:59:52
阅读次数:
274
本系列作为Java Performance:The Definitive Guide的读书笔记。
概览
在目前的JVM中,主要有4中垃圾回收器(Garbage Collector):
串行回收器(Serial Collector),主要用于单核计算机吞吐量(并行)回收器(Throughput/Parallel Collector)并发回收器(Concurrent/CMS Co...
分类:
编程语言 时间:
2014-09-21 18:47:50
阅读次数:
224
跟 column相关的常见的方法有:column_exists? (table_name, column_name, type = nil, options = {})add_column (table_name, column_name, type, options = {})remove_co....
分类:
其他好文 时间:
2014-09-21 18:38:31
阅读次数:
271
在System.Configuration命名空间下死活找不到ConfigurationManager类,运行程序便报错。遇到这样的情况,须要对项目加入引用。方法例如以下:右键references->add references->assemblies下的framework->勾选System.Co...
分类:
其他好文 时间:
2014-09-21 18:11:11
阅读次数:
188
constconst指针1 char greeting[] ="hello"; 2 char* p = greeting; // non-const pointer, non-const data3 const char* p = greeting; // non-const pointer, co...
分类:
编程语言 时间:
2014-09-21 16:45:40
阅读次数:
241
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Co...
分类:
其他好文 时间:
2014-09-21 15:17:10
阅读次数:
196
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Co...
分类:
其他好文 时间:
2014-09-21 14:42:10
阅读次数:
274
Compare methodEither you implement a compare-method for your object:- (NSComparisonResult)compare:(Person *)otherObject { return [self.birthDate co...
分类:
其他好文 时间:
2014-09-20 23:09:39
阅读次数:
263