补充记录12.8 Threads and Signals 以及 12.9 Threads and fork两部分只有两个小节,但是断断续续看了几次,争取用不同的例子尽量多理解这两部分内容。有理解的不深刻,不正确的地方,以后再求改正。12.8 Threads and Signals 作者提醒大家,“....
分类:
其他好文 时间:
2015-10-24 18:54:42
阅读次数:
278
Language:Bridging signalsTime Limit:1000MSMemory Limit:10000KTotal Submissions:10762Accepted:5899Description'Oh no, they've done it again', cries the ...
分类:
其他好文 时间:
2015-10-18 19:49:54
阅读次数:
181
把左边固定,看右边,要求线不相交,编号满足单调性,其实是LIS的等价表述。(如果编号是乱的也可以把它有序化就像Uva 10635 Prince and Princess那样O(nlogn)#include#include#include#include#include#include#include...
分类:
其他好文 时间:
2015-10-17 13:25:47
阅读次数:
145
In this part of the PyQt4 tutorial, we have covered signals and slots.
分类:
其他好文 时间:
2015-10-01 22:58:44
阅读次数:
268
题意: 给一个数字序列,要求找到LIS,输出其长度。思路: 扫一遍+二分,复杂度O(nlogn),空间复杂度O(n)。 具体方法:增加一个数组,用d[i]表示长度为 i 的递增子序列的最后一个元素,且该元素总是保持当前最小。初始化d[1]=A[i],当前LIS的长度len=1。从 2 to n...
分类:
其他好文 时间:
2015-09-27 21:22:41
阅读次数:
184
http://www.cypress.com/knowledge-base-article/interfacing-sram-jtag-signals-using-voltage-level-shifter-kba81536As a best practice, avoid use of level...
分类:
其他好文 时间:
2015-09-19 00:35:01
阅读次数:
218
The TAP controller is a synchronous finite state machine that respondsto changes at the TMS and TCK signals of the TAP and controls the sequence of op...
分类:
其他好文 时间:
2015-09-02 00:07:01
阅读次数:
532
我们先看一下Swift调用Object-c
首先我们创建一个OC类
到最后一步的时候发现多了一个确认框,点击Yes 系统会生成一个Swift和OC的转换桥梁。
他的命名规则是 项目名称-Bridging-Header.h 这个是系统生成的我们直接用。
接下来我们给刚创建的OC类添加一个方法
#import
@interface TestSwi...
分类:
编程语言 时间:
2015-08-29 20:17:16
阅读次数:
166
POJ 1631 Bridging signals如图,原本左右端口应当按顺序连接。现在只有切除部分线路,使得任何线路都不相交。希望你写一个程序计算最后剩下多少线路?话句话说就是求最长上升序列的长度 1 #include 2 #include 3 #include 4 using namespace...
分类:
其他好文 时间:
2015-08-29 11:03:45
阅读次数:
193
1. 基本操作(Basic Operators)
描述 ReactiveCocoa 最常用的一些操作以及使用范例。 主要是如何运用 序列(sequences) 和 信号(signals) 的流操作。
用信号实现副作用(Performing side effects with signals)
订阅(Subscription)依赖注入(Injecting effects)
流的传输(Tr...
分类:
其他好文 时间:
2015-08-28 13:28:48
阅读次数:
226