码迷,mamicode.com
首页 > 2015年02月10日 > 全部分享
常见的视频格式介绍
主要是编码的方式和算法不同以下是常见的格式MPEG/.MPG/.DATMPEG是Motion Picture Experts Group 的缩写。这类格式包括了 MPEG-1, MPEG-2 和 MPEG-4在内的多种视频格式。MPEG-1相信是大家接触得最多的了,因为目前其正在被广泛地应用在 VC...
分类:其他好文   时间:2015-02-10 14:55:03    阅读次数:133
leetcode[37]Sudoku Solver
Write a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character'.'.You may assume that there will be on...
分类:其他好文   时间:2015-02-10 14:56:42    阅读次数:173
SqlBulkCopy
SqlConnection conn =new SqlConnection("连接字符串")conn.open();SqlBulkCopy bulkCopy = new SqlBulkCopy("连接字符串",SqlBulkCopyOptions.UseInternalTransaction); /...
分类:数据库   时间:2015-02-10 14:55:21    阅读次数:169
smali An assembler/disassembler for Android's dex format
TypesMethodsAndFields - smali - Some general information about how types, methods and fields are represented in dalvik bytecode - An assembler/disasse...
分类:移动开发   时间:2015-02-10 14:55:43    阅读次数:194
Centos编译php5.3报错:libiconv.so.2: cannot open shared object file: No such file or directory
Centos编译php5.3报错:libiconv.so.2: cannot open shared object file: No such file or directory
分类:Web程序   时间:2015-02-10 14:54:00    阅读次数:163
leetcode[41]First Missing Positive
Given an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]return3,and[3,4,-1,1]return2.Your algorithm should ru...
分类:其他好文   时间:2015-02-10 14:55:06    阅读次数:155
leetcode[38]Count and Say
The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one 1"or11.11is read off as"tw...
分类:其他好文   时间:2015-02-10 14:55:17    阅读次数:155
项目部署到服务器需要注意几点
1.连接字符串一般项目在本地开发可能会用到windows验证,但是服务器上却使用sql server身份验证,可能会出现如下错误。用户 'NT AUTHORITY\NETWORK SERVICE' 登录失败再看看web.config配置的连接字符串注意蓝色标注,它说明是windows验证,所以要sq...
分类:其他好文   时间:2015-02-10 14:52:10    阅读次数:179
java线程
1:继承 Thread 类,为什么要继承 run 方法答案: Thread 实现了 Runnable 接口,而 run 方法是 Runnable 的方法, 接口中的方法 默认 public abstract。 如果继承 Thread 类,不重写 run 方法 ,不会报错 ,但是无法指 定线程运行的代...
分类:编程语言   时间:2015-02-10 14:53:17    阅读次数:223
Clover 的功能就是给资源管理器加上 Chrome 一样的标签页
官网下载地址:http://cn.ejie.me/
分类:其他好文   时间:2015-02-10 14:54:24    阅读次数:107
[算法导论]练习4.1-5最大连续子数组问题
题目:在线性时间内非递归的求数组的最大连续子数组(连续和最大的子数组)。思路:设最大子数组的和为max,起点和终点位置为s、e,正在扫描的子数组的和为add,起点和终点位置为i、j。max的初始值为-∞。 1.若数组的值全为负,则返回最大值。 2.逐个扫描数组元素,更新add、i、j的值...
分类:编程语言   时间:2015-02-10 14:52:28    阅读次数:204
leetcode[27]Remove Element
Given an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. It doesn't mat...
分类:其他好文   时间:2015-02-10 14:52:06    阅读次数:148
windows 常用命令整合
到年终了,手里活不多了,平时就想着将平时一些常用的命令整合一下,于是下面的一个小小脚本就出来了。。。。好了,直接上菜:@echo offcolor 0amode con cols=90 lines=25:beginecho -------------------------工具使用说明-------...
分类:Windows程序   时间:2015-02-10 14:51:24    阅读次数:145
leetcode[35]Search Insert Position
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:其他好文   时间:2015-02-10 14:50:56    阅读次数:101
angularjs填写表单
https://scotch.io/tutorials/handling-checkboxes-and-radio-buttons-in-angular-forms Angular Checkboxes and Radio But...
分类:Web程序   时间:2015-02-10 14:53:52    阅读次数:158
安装Cloudera Impala
安装Cloudera ImpalaCloudera Impala是Cloudera Enterprise Core的开源扩展,用于快速返回查询结果。Impala作为你环境的插件,与其他组件的安装独立进行。Impala由一组组件组成,可以安装到集群中的多个节点。Impala包安装一下二进制文件:imp...
分类:其他好文   时间:2015-02-10 14:51:41    阅读次数:137
leetcode[48]Rotate Image
You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?class Solution {pub...
分类:其他好文   时间:2015-02-10 14:52:59    阅读次数:111
1734条   上一页 1 ... 50 51 52 53 54 55 56 ... 102 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!