EIT表示由DVB定义的,是一个SI表,因此它是一个全局变量表,一个数字电视系统每一个业务对应两种EIT表。
一种EIT present/following 表(描述当前时间/后续事件),一个业务对应着一个EITpresent/following表,EIT present/following表分为当前流表(table id=0X4E)和其他流表(0x4F),每一个流通常对应6(有6个业务)EIT...
分类:
其他好文 时间:
2014-12-12 19:18:46
阅读次数:
208
水题==代码:#include #include #include using namespace std;const int mod = 10005;struct Node { int to, next;}e[1000005];int head[mod + 10];int tot;int a...
分类:
其他好文 时间:
2014-12-09 22:55:01
阅读次数:
268
近日微软公布了最新的WPF路线图,一片热议;对于老牌控件提供商葡萄城来说,这是WPF系列控件一个重要的机遇,因此,Spread Studio for WPF产品做了一次重要更新,并随着Spread Studio 8.0发布。鉴于此,选择翻译并整理了一篇自codeproject的文章:《Is WPF dead: the present and future of WPF?》,抛砖引玉,且聊聊程序员心目中的WPF。...
find your present (2)
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/1024 K (Java/Others)
Total Submission(s): 16308 Accepted Submission(s): 6191
Problem Description
In the new yea...
分类:
其他好文 时间:
2014-12-01 22:38:38
阅读次数:
189
题意 求一组数中只出现过奇数次的数 输入保证只有一个数满足
知道一个数与自己的异或等于0 与0的异或等于自己就行咯
#include
using namespace std;
int main()
{
int n, t, ans;
while(scanf("%d", &n), n)
{
ans = 0;
for(int i = 1; ...
分类:
其他好文 时间:
2014-12-01 20:58:43
阅读次数:
168
翻译自:http://msdn.microsoft.com/en-us/library/windows/desktop/bb172588(v=vs.85).aspx
Describes the presentationparameters.
定义后台缓存表面的参数(包括深度模板缓存是否定义和像素格式).
typedef structD3DPRESENT_PARAMETERS {
UIN...
分类:
其他好文 时间:
2014-11-30 23:19:16
阅读次数:
371
最长上升子序列,这种水题还是一眼就能看出来的。
题目大意:
主人公想在一张w*h的明信片外套信封。他有n个信封,每个信封的长宽给出,问最多能套多少层。给出从小到大的顺序。
解题思路:
最长上升子序列,只不过是记忆路径。
下面是代码:
#include
#include
#include
#include
#include
#includ...
分类:
其他好文 时间:
2014-11-29 16:07:20
阅读次数:
208
本章用来作为Starling的滤镜实现原理的一个补充,但是为了了解原理,我们会使用原生API进行编码。我们知道,当我们调用drawTriangles方法时,我们的图像是绘制到后台缓冲区的,只有调用present方法时才会把图像呈现到屏幕。我们先来看看Context3D的两个方法:setRenderT...
分类:
其他好文 时间:
2014-11-28 16:02:41
阅读次数:
206
调用web接口,get请求,发现提示:No 'Access-Control-Allow-Origin' header is present on the requested resource.这个和安全机制有关,默认不允许跨域调用处理手段:使用jsonp格式, ajax请求参数dataType:'J...
分类:
Web程序 时间:
2014-11-26 22:29:10
阅读次数:
227
在iOS5和iOS6前,View Controller的切换主要有4种:1. Push/Pop,NavigationViewController常干的事儿2. Tab,TabViewController点击3. Present Modal,调用ViewController的presentViewCo...
分类:
移动开发 时间:
2014-11-26 18:52:51
阅读次数:
460