1
////////////////////////////////////////////////////////////////////////// 2
//code by hzs 3 //email: huangzhesi@gmail.com 4 //Last modified: 2014-....
分类:
其他好文 时间:
2014-05-27 02:41:54
阅读次数:
218
通过SigXplorer设置绝对延时和相对延时及对Local-Global的理解一、基本理解(感觉可能有偏差)在于博士的教程第44和45讲中,分别对绝对延时和相对延时进行了设置,通过SigXplorer。1、当前对绝对延时和相对延时的理解为:(用length来衡量的话)绝对延时:绝对走线长度,为走线...
分类:
其他好文 时间:
2014-05-27 02:40:56
阅读次数:
352
源码://HeapSort.cpp#include using namespace
std;//about heap://the last leaf node is a[n-1]//the last non-leaf node is
a[n/2-1];// a[i]// ...
分类:
其他好文 时间:
2014-05-27 02:21:23
阅读次数:
240
一、Filter的部署——注册Filter testFitler
org.test.TestFiter word_file /WEB-INF/word.txt 1、用于为过滤器指定一...
分类:
编程语言 时间:
2014-05-27 01:37:02
阅读次数:
310
以下Function可以用于textbox的KeyUp事件:var numberChars =
"1234567890";function isDecimal(item) { var obj = $(item); if (obj.length >
0) { if ($(ob...
分类:
其他好文 时间:
2014-05-24 05:30:56
阅读次数:
204
std::fill 在[first, last)范围内填充值#include #include
#include int main(){ std::vector v; v.resize(10); std::fill(v.begin(), v.end(),
100); retu...
分类:
编程语言 时间:
2014-05-24 05:15:36
阅读次数:
320
1、.*和*的区别.*只能用于两个同型矩阵相乘,且是相对应的元素做乘法运算,其运算规则和我们线性代数里的乘法规则是不一样的;而*用于两个矩阵相乘,如mxn,nxk两个矩阵相乘,它的运算规则和线性代数里的一样。2、reshape函数利用向量创建矩阵3、length()函数获取一维向量长度,若输入为矩阵...
分类:
其他好文 时间:
2014-05-24 05:13:30
阅读次数:
356
Given a string S, find the longest palindromic
substring in S. You may assume that the maximum length of S is 1000, and there
exists one unique longes...
分类:
其他好文 时间:
2014-05-24 04:45:39
阅读次数:
245
1)内存间复制(非重叠)应用:比如将需要显示的内容,从缓冲区复制到内存先看等VOID
RtlCopyMemory(IN VOID UNALLGNED* Destination,IN CONST VOID UNALLGNED *Source,IN
SIZE_T Length);//表示要复制的内存长度...
分类:
其他好文 时间:
2014-05-19 18:49:01
阅读次数:
228
错误类型PHP
主要有两种错误:触发错误和异常。其中触发错误大概可以分为:编译错误、引擎错误和运行时错误,其中前两个是无法捕获的;异常都是可以捕获的,当没有尝试捕获时则会中断代码。触发错误可以通过error_get_last()来进行获得,异常可以使用标准的try...catch语句来捕获。处理方式...
分类:
Web程序 时间:
2014-05-19 18:09:36
阅读次数:
311