最新 最热

python 多进程 管道(并行编程 16)

def initem(pipe): out,=pipe for item in range(10): out.send(item) out.close() def mulitem(pipe1,pipe2): close,inpipe=pipe1 close.close() out,=pipe2 try...

2019-07-30
1

python 多线程 锁lock/rlock(并行编程 4)

threading.Lock() lock.acquire() lock.release()

2019-07-30
1

【LeetCode-解题一 求和】

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

2019-07-25
1

Keras 系列(六) CNN 分类及fit_generator函数

在实际项目中,训练数据会很大,以前简单地使用model.fit将整个训练数据读入内存将不再适用,所以需要改用model.fit_generator分批次读取。

2019-07-24
1

SCI写作专题第四期:Results

The great tragedy of science: the slaying of a beautiful hypothesis by an ugly fact.——Thomas Henry Huxley (1825–1895)

2019-07-12
1

Component之SIO

包含了它之后,VxWorks就会调用usrSerial.c的usrSerialInit()来加载串口设备

2019-07-10
1

常用算法之回溯法

思路:在包含问题的解空间中,按照深度优先搜索的策略,从根节点出发深度探索解空间树,当探索到某一节点时,先判断该节点是否包含问题的解,如果包含,就从该节点触发继续探索下去,如果不包含该节点的解,则逐层向其祖先节点回溯。...

2019-07-09
0

LeetCode 167:两数之和 II - 输入有序数组 Two Sum II - Input array is sorted

函数应该返回这两个下标值 index1 和 index2,其中 index1 必须小于 index2。

2019-07-08
1

selenium多个窗口切换

浏览器里面支持多窗口打开,例如这样:html里面写了: target="_blank" 造成新打开一个窗口,但是selenium不会自动跳转到新的串口,需要自己切换:# 你打开的浏览器,谷歌...

2019-07-02
0

适配器模式(Adapter Class/Object)

适配器模式(Adapter Class/Object)是指将一个接口转换成客户端希望的另外一个接口,该模式使得原本不兼容的类可以一起工作。举个例子:macbook pro有一个HDMI接口,一条H...

2019-07-01
1