1 RTP Header解析
2、RTP荷载H264码流
2.1、单个NAL单元包
2.2、分片单元(FU-A)
3、RTP荷载PS流
3.1、PS包头
3.2、系统标题
3.3、节目映射流
3.4、PES分组头部...
分类:
其他 时间:
2014-09-12 19:15:59
收藏:
0 评论:
0 赞:
0 阅读:
650
MVP是方法,刚需仍需深入抓
那天听完CEO讲完MVP精益创业的培训,久久不能平静,遂在图书馆中踱步思考之时,想到MVP真正能够解决企业创造出如Apple一样的产品吗?小弟愚见:MVP是一种做产品的方式方法,其根本是避免企业走弯路,以最小的代价做最快的迭代,尽快的投入测评,然后及时纠正自己的方向(快速、低成本、高效益);...
分类:
其他 时间:
2014-09-12 19:14:14
收藏:
0 评论:
0 赞:
0 阅读:
453
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace 构造函数的执行顺序
{
public class MyBaseClass
{
public MyBaseClass()
{
Conso...
分类:
其他 时间:
2014-09-12 19:14:04
收藏:
0 评论:
0 赞:
0 阅读:
201
/**
* compute the the md5 of input file
* @param input file
* @return
* md5 string, or null
*/
public static String md5(File file){
try{
MessageDigest md = MessageDigest.getIns...
分类:
其他 时间:
2014-09-12 19:13:54
收藏:
0 评论:
0 赞:
0 阅读:
320
瑶瑶的第K大
Time Limit: 10000/5000MS (Java/Others)Memory Limit: 512000/256000KB (Java/Others)
SubmitStatisticNext
Problem
Problem Description
一天,萌萌的妹子--瑶瑶(tsyao)很无聊,就来找你玩。可是你们都不知道玩什么。。。尴尬了一阵子...
分类:
其他 时间:
2014-09-12 19:13:44
收藏:
0 评论:
0 赞:
0 阅读:
284
That Nice Euler Circuit
Timelimit:3.000 seconds
Little Joey invented a scrabble machine that he called Euler, after the great mathematician. In his primary school Joey heard about the nice s...
分类:
其他 时间:
2014-09-12 19:13:34
收藏:
0 评论:
0 赞:
0 阅读:
293
程序代码
#include
#include
using namespace std;
class Point //定义坐标点类
{
public:
Point(double x = 0, double y = 0);//构造函数
double getX();//得到x坐标
double getY();//得到y坐标
void PrintPoint();...
分类:
其他 时间:
2014-09-12 19:13:24
收藏:
0 评论:
0 赞:
0 阅读:
271
poj 1745 Divisibility(DP + 数学)...
分类:
其他 时间:
2014-09-12 19:13:14
收藏:
0 评论:
0 赞:
0 阅读:
244
题目大意:有三名越狱犯杀死狱警后穿警服逃狱,现已被警方全部抓获……啊呸呸呸呸呸,扯远了
监狱有连续编号为1...N的N个房间,每个房间关押一个犯人,有M种宗教,每个犯人可能信仰其中一种。如果相邻房间的犯人的宗教相同,就可能发生越狱,求有多少种状态可能发生越狱
m
一看这数据范围就是logn嘛!于是我们来分析一下
f[i]表示连续i个房间可能发生越狱的情况数
当状态从f[i]转移到f[...
分类:
其他 时间:
2014-09-12 19:12:54
收藏:
0 评论:
0 赞:
0 阅读:
182
程序代码
#include
#include
using namespace std;
class CPerson //定义一个CPerson类
{
protected:
char *m_szName;//姓名
char *m_szId;//身份证号
int m_nSex;//性别0:women,1:man
int m_nAge;//年龄
public:
CPerson(ch...
分类:
其他 时间:
2014-09-12 19:12:44
收藏:
0 评论:
0 赞:
0 阅读:
314
最近学习的时候,看见一份资料上教...
分类:
移动平台 时间:
2014-09-12 19:12:34
收藏:
0 评论:
0 赞:
0 阅读:
220
MAC下搜狗输入法在英文状态下有下划线怎么办?
解决方法:关掉搜狗里面额英文助手即可
图片说明:下面吧英文助手的对勾去掉即可...
分类:
其他 时间:
2014-09-12 19:12:24
收藏:
0 评论:
0 赞:
0 阅读:
526
程序代码
#include
using namespace std;
class Point//点类
{
public:
//使用初始化表初始化点类
Point(double a = 0, double b = 0):x(a), y(b){}
double getX();//得到x坐标
double getY();//得到y坐标
//重载<<实现点...
分类:
编程语言 时间:
2014-09-12 19:12:14
收藏:
0 评论:
0 赞:
0 阅读:
230
POI 操作Excel
异常处理
org.apache.poi.openxml4j.exceptions.invalidformatexception: package should contain a content type part...
分类:
其他 时间:
2014-09-12 19:12:04
收藏:
0 评论:
0 赞:
0 阅读:
2085
leetcode 的图路径数目问题...
分类:
其他 时间:
2014-09-12 19:11:57
收藏:
0 评论:
0 赞:
0 阅读:
193
网上看了有些代码有些错误,这里重新更正了下
思想:循环数组有一边是有序的,首先先判断哪一边有序(通过将当前mid点与最左边节点比较),然后查看是否在有序边上
代码如下
#include
#include
using namespace std;
int Binary_Search(int *a,int low,int high,int value)
{
int mid=(low+high)...
分类:
其他 时间:
2014-09-12 19:11:56
收藏:
0 评论:
0 赞:
0 阅读:
188
嵌入式Linux cp命令实现...
分类:
系统服务 时间:
2014-09-12 19:11:24
收藏:
0 评论:
0 赞:
0 阅读:
358
Description
There is a string A. The length of A is less than 1,000,000. I rewrite it again and again. Then I got a new string: AAAAAA...... Now I cut it from two different position and get a new str...
分类:
其他 时间:
2014-09-12 19:11:14
收藏:
0 评论:
0 赞:
0 阅读:
146
之前一直觉得链表很神秘,扣扣索索写不出来,逻辑通了后,通过将单向链表中在尾部新增结点的函数完全弄懂后,单向链表也就很轻松写出来删除某个位置的结点的函数和在任意位置增加结点的函数,增删改查也就搞定了
弄懂尾部新增结点的函数后的感觉:首先很清晰链表上的环节怎么实现,其次自己考虑了一下细微的地方就出来了(例如写其他函数的时候不由自主就会想,我怎么知道用户有没有先调建结点的函数就掉删除结点的函数等)
...
分类:
其他 时间:
2014-09-12 19:11:04
收藏:
0 评论:
0 赞:
0 阅读:
250
程序代码
#include
using namespace std;
class Point//点类
{
public:
//使用初始化表初始化点类
Point(double a = 0, double b = 0):x(a), y(b){}
double getX();
double getY();
//重载<<实现点的坐标的输出
fri...
分类:
其他 时间:
2014-09-12 19:10:54
收藏:
0 评论:
0 赞:
0 阅读:
191