转自:http://blog.csdn.net/yangzhongxuan/article/details/8003494 名词解释 场和帧 : 视频的一场或一帧可用来产生一个编码图像。在电视中,为减少大面积闪烁现象,把一帧分成两个隔行的场。 片: 每个图象中,若干宏块被排列成片的形式。片分为I片、 ...
分类:
其他好文 时间:
2017-10-16 15:01:46
阅读次数:
211
https://odzkskevi.qnssl.com/5e1fdf8cae5d11a8f572bae96d6095c0?v=1507521965 Perhaps you have heard of the legend of the Tower of Babylon. Nowadays many ...
分类:
其他好文 时间:
2017-10-16 11:09:45
阅读次数:
172
seq_list.h seq_list.c main.c ...
分类:
其他好文 时间:
2017-10-16 01:48:46
阅读次数:
264
序列:是oracle提供的,用于产生唯一数值的对象,主要配合表的单一主键使用。 创建序列: create sequence seq_NAME//命名 start with 1//初始值 increment by 1//递增值 minvalue 1//最小值,可缺省,采用系统默认值 maxvalue ...
分类:
数据库 时间:
2017-10-15 21:06:38
阅读次数:
177
#include #include typedef struct seqstring{ char string[100]; int length; }seqstring; void getnext(seqstring p,int next[]){ int i,j; next[0]=-1;//next... ...
分类:
编程语言 时间:
2017-10-14 19:47:06
阅读次数:
202
1.多个窗口之间切换 ①alt+1 alt+2 alt+3 ②ctrl + pageUp/pageDown ③按 Windows+W 以显示所有打开的缩小窗口,点击您想切换到的窗口 ...
分类:
系统相关 时间:
2017-10-13 19:02:13
阅读次数:
218
select(‘Currentuser:‘||user)asCurrent_Userfromdual;select(‘DB:‘||sys_context(‘USERENV‘,‘DB_NAME‘))asDBfromdual;deletefromXXX_AEI_PATCH_CURED_EVENT;commit;copyfrom&1to&2-insertXXX_AEI_PATCH_CURED_EVENT-(seq_id,-bc,-bus_rel_id,-partner_id,-ori_aei_sta..
分类:
数据库 时间:
2017-10-13 14:57:32
阅读次数:
280
先c1和c2并行消费生产者产生的数据,然后c3再消费该数据 我们来使用代码实现:我们可以使用Disruptor实例来实现,也可以不用产生Disruptor实例,直接调用RingBuffer的api来实现,不清楚看上一节使用的api函数workpool和BatchEventProcess来辅助实现消费 ...
分类:
其他好文 时间:
2017-10-13 14:07:56
阅读次数:
176
QString编码:UTF-16 QString内部保存的数据就是QChar数组,是Unicode编码(utf16),在字符显示,操作的时候都是基于Unicode。 QString构造时默认采用Latin-1编码转为Unicode保存。 所以如果字符数据不是Latin-1编码,那么就需要使用QStr ...
分类:
其他好文 时间:
2017-10-13 13:57:35
阅读次数:
182
Given a binary tree, find the length of the longest consecutive sequence path. The path refers to any sequence of nodes from some starting node to any ...
分类:
其他好文 时间:
2017-10-13 10:11:47
阅读次数:
121