section 1 不解释~section 21.2.1 a+b coming 1 #include 2 long long z,x,y; 3 int main( ) 4 { 5 while( scanf( "%I64x%I64x",&x,&y ) != EOF ) 6 { 7 ...
分类:
其他好文 时间:
2014-08-24 19:18:32
阅读次数:
197
一个网友问了我一个问题如下:loadruner报错:Error -27728: Step download timeout (120 seconds) 如何解决语法检查通过,但是在并发执行一个查询时候报错Action.c(16): Error -27728: Step download timeou...
分类:
其他好文 时间:
2014-08-24 19:12:23
阅读次数:
203
Squid学习笔记1、安装前的配置编译安装之前需要校正的参数主要包括File Descriptor和Mbuf Clusters。1、File Descriptor查看文件描述符的限制数目:ulimit –n调整文件描述符的数目需要3步:step 1,编辑系统头文件/usr/include/bits/...
分类:
其他好文 时间:
2014-08-24 15:19:02
阅读次数:
214
Triangle
Total Accepted: 16109 Total
Submissions: 60327My Submissions
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row...
分类:
其他好文 时间:
2014-08-23 16:54:11
阅读次数:
253
一步一步安装配置roller步骤及所遇到的问题及解决办法。
驱动无法加载
内存溢出等
分类:
其他好文 时间:
2014-08-23 00:58:29
阅读次数:
439
一、虚拟机配置
1、 虚拟机(VBox 4.3.12)
2、 配置虚拟机网卡网络,选择host-only,VirtualBox Host-Only Network网卡IP为设置为192.168.1.100
二、安装RedHat 5.3操作系统(序列号:9f3013459b745c13)
具体过程略,注意在自定义软件包那里选择现在配置,选取“开发工具”、“旧的开发工具”、“X工具”下...
分类:
数据库 时间:
2014-08-22 17:59:09
阅读次数:
343
原始题目:给定一个无序的整数序列, 找最长的连续数字序列。例如:给定[100, 4, 200, 1, 3, 2],最长的连续数字序列是[1, 2, 3, 4]。小菜给出的解法: 1 function maxSequence(array,step){ 2 var _array = array.sl.....
分类:
编程语言 时间:
2014-08-22 17:41:59
阅读次数:
246
Create a detector object.faceDetector = vision.CascadeObjectDetector;Read input image. I = imread('visionteam.jpg');Detect faces. bboxes = step(...
分类:
其他好文 时间:
2014-08-22 14:26:08
阅读次数:
301
调试的过程我们在eclipse中来看一下一般调试的过程:1、debug模式编译2、打上断点3、运行调试4、单步调试step into:跳到函数体内部step over:不跳到函数体内step return:运行完当前函数5、继续运行continue6、打印和监控值GDB调试先写一段C++的代码,代码内容如下:使用debug模式编译:进入Debug调试模式:1、打断点,打断点的方式如下(GDB中的命...
分类:
移动开发 时间:
2014-08-22 00:24:25
阅读次数:
254
leetcode的题目Given two wordsword1andword2, find the minimum number of steps required to convertword1toword2. (each operation is counted as 1 step.)You h...
分类:
其他好文 时间:
2014-08-21 22:29:54
阅读次数:
279