//最长上升子序列(n^2)
//入口参数:1.数组名称 2.数组长度(从0开始)
int LIS(int a[],int len)
{
int *dp=new int[len];
int ans=1;
dp[0]=1;
for(int i=1;i<len;i++)
{
int m=0;
for(int j=0;jm && a[j]<a...
分类:
其他好文 时间:
2014-06-28 09:19:23
阅读次数:
220
Jquery Mobile实例教程,介绍如何利用JM调用优酷API接口显示数据
分类:
Web程序 时间:
2014-06-19 06:12:19
阅读次数:
545
如今,H264已经成为视频行业的标准规范,企业中使用比较多的当数X264,开源,资源消耗又比较少。
首先,介绍一下常见的三大开源H264编码器:JM、X264、T264
JM H264的官方测试源码,实现了264的所有特性,但程序结构冗长,编码复杂度高,不推荐商业应用。
X264 摈弃了264中对编码性能贡献小,但计算复杂度极高的新特性,推荐商业应用。
T264 编码与X264类似,但是解码器只能解T264编码的,有点坑。...
分类:
其他好文 时间:
2014-06-17 19:20:32
阅读次数:
410
M了个J - 博客园M了个J - 博客频道 - CSDN.NET
分类:
其他好文 时间:
2014-05-26 10:34:21
阅读次数:
323
本文转载至http://hi.baidu.com/dark_jm/item/5a5083fe2692ea743c198b20ps:本文转载自网络:http://ryan.easymorse.com/?p=12
感谢作者工程完整代码下载地址:RequestTestDownload1可完成:下载指定链接...
分类:
其他好文 时间:
2014-05-26 10:26:50
阅读次数:
204
#include#include#include#includeusing namespace
std;struct city{char name[50];int jd;int jf;int jm;int wd;int wf;int wm;string
jdf;float a;float b;int...
分类:
其他好文 时间:
2014-05-23 04:20:29
阅读次数:
600
看到有人说JM解码编码264
尝试了一下http://iphome.hhi.de/suehring/tml/download/win7下 vs2010
编译后,得到编码解码可执行文件ldecod.exe lencod.exe还是使用原来测试编码265的视频序列 http://www.cnblogs....
分类:
其他好文 时间:
2014-05-09 12:04:08
阅读次数:
439