http://blog.csdn.net/u010949962/article/details/41865777 最近要把Android 原生的View渲染到OpenGL GLSurfaceView中,起初想到的是截图的方法,也就是把View截取成bitmap后,再把Bitmap渲染到OpenGL中 ...
分类:
移动开发 时间:
2017-05-12 20:29:18
阅读次数:
350
Feature Selection 1. Filter: Scoring each feature, filter out good features. 1.1 Chi-Square 卡方检验 1.2 Correlation 相关检验 1.3 Information Gain 信息获取 2. Wra ...
分类:
其他好文 时间:
2017-05-12 13:16:06
阅读次数:
190
You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represents water. Grid cells are connected horizontally/ve ...
分类:
其他好文 时间:
2017-05-12 00:17:32
阅读次数:
175
There is a square matrix n?×?n, consisting of non-negative integer numbers. You should find such a way on it that starts in the upper left cell of the ...
分类:
其他好文 时间:
2017-05-10 18:54:07
阅读次数:
203
无序列表 由<ul>和<li>组成 <ul type=""> <li>XX</li> </ul> disc=实体圆心 ● square=实体方心 ■ circlc=空心圆 ○ 有序列表 由<ol>和<li>组成 <ol type=""> <li>XXXX</li> </ol> 1为默认值也可输入1 ...
分类:
其他好文 时间:
2017-05-09 12:33:57
阅读次数:
95
There is a square matrix n?×?n, consisting of non-negative integer numbers. You should find such a way on it that starts in the upper left cell of the ...
分类:
其他好文 时间:
2017-05-08 23:29:49
阅读次数:
411
1.有序列表 显示结果: 标签:<ol></ol> 中间数据用<li></li>包裹,默认从1开始排序 属性:1、 type=""可以填1、a、A、i、I 其中i和I是罗马数字的意思 2、start=""从第几个开始 这种标签在实际工作中较少使用 2.无序列表 显示结果: 标签:<ul></ul> ...
分类:
Web程序 时间:
2017-05-08 23:08:50
阅读次数:
148
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5054 Problem Description Bob and Alice got separated in the Square, they agreed that if they get separa ...
分类:
其他好文 时间:
2017-05-08 10:09:38
阅读次数:
243
1、 脚本示例: 执行结果: 2、 脚本示例: 执行结果: 由以上截图可以看出执行顺序: 大体可以得出如下结论: 1)测试的顺序总体上按照包—>模块—>类的顺序进行; 2) 然后按照测试用例名称的升序排序进行,比如test_square比test_sub先执行; 3)当测试模块中既包含测试函数,又包 ...
分类:
编程语言 时间:
2017-05-08 09:54:34
阅读次数:
211
given a 2-d matrix with 0 or 1 values largest square of all 1's dynamic programming, dp[i][j] = 1 + min{dp[i-1][j], dp[i][j-1], dp[i-1][j-1]} if m[i][ ...
分类:
其他好文 时间:
2017-05-07 18:37:21
阅读次数:
182