#include #include using namespace std; struct
BTNode { int v; // default positive Integer. BTNode *pLeft; BTNode *pRight;
BTNode(int x) : v(x), pLeft(...
分类:
其他好文 时间:
2014-07-22 23:00:54
阅读次数:
294
该错误在入门例子中使用mvn clean test时出现该错误。原因:
测试用例应该放在src/test/java/...路径下,我是放在了src/main/java/..路径下了。 因为没有遵守其规则,才出现了该问题。
分类:
其他好文 时间:
2014-07-22 23:00:13
阅读次数:
5348
2014年5月1日
18:48:01安装:系统是centos,里边的python版本是2.4,但是node.js 源码tar包安装要求是 2.6 或者 2.7下载python
2.7编译安装,注意,可以不卸载原有系统中的python,编译安装2.7时,默认安装,不要在配置时指定安装路径默认安装的时候...
分类:
Web程序 时间:
2014-07-22 22:59:55
阅读次数:
346
JQM Listview 加载更多 demo - Warren的个人主页JQM Listview
加载更多 Demo测试数据1测试数据2测试数据3测试数据4 显示更多 Page Footer JQM Listview 加载更多 demo -
Warren的个人主页 ...
分类:
其他好文 时间:
2014-07-22 22:59:16
阅读次数:
425
前段时间,接到客户的求助,主要是关于无法通过safari在线安装企业级应用的问题。经过一系列测试都没有发现相同现象,最后发现客户使用了还原的功能,把iPad的iOS升级到了7.1。网上搜索了一下,发现从iOS7.1开始,之前使用itms-services://URL方式在线安装ipa文件的方法都失效...
分类:
移动开发 时间:
2014-05-01 22:22:17
阅读次数:
544
1.测试sql语句执行时间的方法,获得时间差declare @end_date
datetimeselect @begin_date = getdate()--要执行的sql语句select @end_date =
getdate()select datediff(ms,@begin_date,@e...
分类:
数据库 时间:
2014-05-01 21:11:51
阅读次数:
398
参考boke:http://blog.csdn.net/hguisu/article/details/71061591 .where 语句里面如果带有or条件,
myisam表能用到索引, innodb不行。(在mysql5.6下测试如此)CREATE TABLE IF NOT EXISTS `a`...
分类:
数据库 时间:
2014-05-01 20:58:57
阅读次数:
601
1 //function1向指定内存写数据,已知a的地址是18FEF0 2 3 int
function1() 4 { 5 int a=0; 6 int *p=&a; 7 int *q=(int*)0x18FEF0;
//指定q的地址为0x18FEF0 8 9 ...
分类:
其他好文 时间:
2014-05-01 20:20:06
阅读次数:
286
1
/******************************************************************** 2 created:
2014/04/29 11:35 3 filename: nth_element.cpp 4 author: ...
分类:
其他好文 时间:
2014-05-01 20:08:30
阅读次数:
404
#include "stdafx.h"#include // 函数声明typedef BOOL
(WINAPI* Proc_CreateProcessW)(LPCWSTR lpApplicationName, LPWSTR lpCommandLine,
...
分类:
其他好文 时间:
2014-05-01 20:05:48
阅读次数:
400