题目: Given an array of integers, find two numbers
such that they add up to a specific target number. The function twoSum should
return indices of the t...
分类:
其他好文 时间:
2014-04-30 03:20:07
阅读次数:
502
Jad是一个Java的一个反编译工
具,是用命令行执行,和通常JDK自带的java,javac命令是一样的。不过因为是控制台运行,所以用起来不太方便。不过幸好有一个eclipse的
插件JadClipse,二者结合可以方便的在eclipse中查看class文件的源代码。1 下载Eclipse反编译工...
分类:
系统相关 时间:
2014-04-30 00:08:08
阅读次数:
779
Given an arraySofnintegers, are there
elementsa,b,c, anddinSsuch thata+b+c+d= target? Find all unique quadruplets in
the array which gives the sum of ...
分类:
其他好文 时间:
2014-04-29 22:40:00
阅读次数:
438
初学Java还不太明白,竟在些简单的事情上栽跟头,分享一下省的麻烦。当我们配置好JDK和环境变量之后,在命令行下输入javac,说明我们的安装是正确的。但是时常会出现下面这种情况主要原因可能就是当前我们还是在C:的目录下,可能你的文件放在D盘,所以应该先把目录专向D盘输入D:回车然后在执行其他操作。
分类:
编程语言 时间:
2014-04-29 21:37:21
阅读次数:
712
2014.04.28module 首测1)环境:Centos release 6.5 (Final)
kernel:
2.6.32-358.23.2.e16.centos.plus.i6862)源文件及Makefile源文件:是一个入门的Hello.c文件,网上到处可以找得到。Makefile...
分类:
系统相关 时间:
2014-04-29 17:25:50
阅读次数:
634
导入工程:File->New->project:选择“Java project
from existing ant buildfile”再从菜单windows->show view->ant
打开ant工具对话框打开ant编译文件build.xml当编译完成后,在源码根目录下会生成一个target目...
分类:
其他好文 时间:
2014-04-29 16:17:53
阅读次数:
519
1、下载cas的cas-web.war包,并把他放在tomcat
的webapps下面;D:\huan\lifeRayWithCas\cas-server-3.5.0-release\cas-server-3.5.0\modules\cas-server-webapp-3.5.0.war2、编辑to...
分类:
Web程序 时间:
2014-04-29 16:12:53
阅读次数:
652
2014-04-29
00:04题目:给定一个整数数组,找出所有加起来为指定和的数对。解法1:可以用哈希表保存数组元素,做到O(n)时间的算法。代码: 1 // 17.12
Given an array of integers and target value, find all pairs in ...
分类:
其他好文 时间:
2014-04-29 15:08:13
阅读次数:
469
1.下载jar包 网址:http://dev.mysql.com/downloads/
-->点击:"MySQL Connector/J 5.1 — Generally Available (GA) release
(recommended)" -->点击:(mysql-connector-java...
分类:
数据库 时间:
2014-04-29 13:33:48
阅读次数:
611