338. Counting Bits --20160518 338. Counting Bits --20160518 Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calc ...
分类:
其他好文 时间:
2016-05-18 12:12:00
阅读次数:
143
Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1’s in their binary representation and return them as an array.Example:
For num = 5 you sh...
分类:
其他好文 时间:
2016-05-16 13:00:38
阅读次数:
184
Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1's in their binary representation and r ...
分类:
其他好文 时间:
2016-05-15 21:16:16
阅读次数:
115
iOS内存管理方式: ARC Automatic Reference Counting 自动引用计数 MRC Manual Reference Counting 手动引用计数 更改管理方式: 内存管理的问题: 1、内存泄露:不再需要的对象没有释放。 2、野指针:正在使用的对象提前释放。 引用计数: ...
分类:
移动开发 时间:
2016-05-13 14:06:54
阅读次数:
213
ZOJ3944 People Counting ZOJ3939 The Lucky Week 1.PeopleConting 题意:照片上有很多个人,用矩阵里的字符表示。一个人如下: 题解: 先弄个常量把3*3人形存起来,然后6个部位依次找,比如现在找头,找到一个头,就把这个人删掉(找这个人的各个部 ...
分类:
其他好文 时间:
2016-05-13 08:05:45
阅读次数:
172
自动引用计数(Automatic Reference Counting)简称ARC,是Swift对应用程序内存的跟踪和管理。跟Java里面的Gc类似,但是又不太一样。
ARC是实例的引用数为0,ARC就会销毁这个实例。
GC是当程序不能访问这个实例,称为该实例”不可达的”,GC就会负责回收这些”不可达的”的实例,回收算法很复杂,Java规范对GC的很多行为都没有进行严格的规定,不同的厂商在各自实...
分类:
编程语言 时间:
2016-05-13 01:11:24
阅读次数:
190
TCP在慢启动阶段,每一个RTT拥塞窗口按指数级增长,TCP在拥塞避免阶段,每一个RTT拥塞窗口线性增加1。这些都是书上讲的,不必太认真,真实的情况要比这个复杂的多! 首先我们看大部分的资料里讲的TCP是怎么实现每RTT增窗的,一切都是扯理论,没什么现实意义! 在慢启动阶段,每收到一个ACK(数据包从发出到收到其ACK,就是一个RTT),窗口增加1,在拥塞避免阶段,每收...
分类:
移动开发 时间:
2016-05-12 22:45:22
阅读次数:
443
ERROR 1074 (42000): Column length too big for column 'Flist' (max = 21845); use BLOB or TEXT instead
ERROR 1118 (42000): Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check ...
分类:
其他好文 时间:
2016-05-12 17:04:22
阅读次数:
882
第一个是常见的小问题:ARC(Auto Reference Counting)中兼容非ARC文件(非ARC中会有类似的错误提醒:#error JSONKit does not support Objective-C Automatic Reference Counting (ARC))时,需要在工程 ...
分类:
移动开发 时间:
2016-05-11 14:59:13
阅读次数:
156