题目:
Write a function to find the longest common prefix string amongst an array of strings.
解析:求字符串数组中所有数组的最长公共前缀,重点考察细节和边界条件,比如:
[] :输入字符串数组为空,要判断if (strs .size() == 0) ...
分类:
其他好文 时间:
2014-08-28 17:02:31
阅读次数:
253
配置远 程连接PostgreSQL数据库的步骤很简单,只需要修改 %PostgreSQL_path%/data 目录下的 pg_hba.conf 和 postgresql.conf。一、修改pg_hba.conf:配置对数据库的访问权限添加host all all 192.168.80.1/24 ....
分类:
数据库 时间:
2014-08-28 16:54:00
阅读次数:
453
将字符串CString类型转换成时间类型:
//转换时间,替代CStringToDateTime(temp);
int nYear, nMonth, nDate, nHour, nMin;
float nSec;
sscanf(temp, "%d-%d-%d %d:%d:%f", &nYear, &nMonth, &nDate...
分类:
其他好文 时间:
2014-08-28 16:18:39
阅读次数:
201
Call openFileOutput() with
the name of the file and the operating mode. This returns a FileOutputStream.通过 openFileOutput()建立FileoutputStream对象Write to the file with write().创建Write对象并进行数据读写操作Close ...
分类:
移动开发 时间:
2014-08-28 16:16:29
阅读次数:
328
public HttpServletResponse download(String path, HttpServletResponse response) { try { // path是指欲下载的文件的路径。 File file = ne...
分类:
编程语言 时间:
2014-08-28 14:38:29
阅读次数:
228
I can think of numerous times when I have seen others write unnecessary Java code and I have written unnecessary Java code because of lack of awarenes...
分类:
编程语言 时间:
2014-08-28 13:11:19
阅读次数:
234
一、更新Android SDK 出错 Failed to rename directory \temp\ToolPackage.old01打算更新AndroidSDK 版本到 Android SDK Tools 20,打开SDK Manager.exe 开始更新,结果安装时弹出错误提示:Failed...
分类:
移动开发 时间:
2014-08-28 13:03:49
阅读次数:
160
使用Response.Write()方法,居然在页面没有弹出,然后调浏览器看到一个错误提示: Sys.WebForms.PageRequestManagerParserErrorException:无法分析从服务器收到的消息 在页面上我写的是: ...
分类:
其他好文 时间:
2014-08-28 12:59:59
阅读次数:
153
关于JDK安装,以及Java环境的设置1、下载JDK1.6,选择对应的安装路径2、配置相应的Java环境变量A、属性名称:JAVA_HOME属性值:C:\ProgramFiles\Java\jdk1.6.0_02B、属性名称:PATH属性值:;%JAVA_HOME%\bin;%JAVA_HOME%\...
分类:
编程语言 时间:
2014-08-28 12:59:19
阅读次数:
173
1、任意位的整数转化为字符串 #include
#include
using namespace std;
char * NumberToString(int n)
{ int nn=n,i=0; while(nn!=0) { nn=nn/10; i++; } char *temp=new char...
分类:
其他好文 时间:
2014-08-28 11:09:19
阅读次数:
226