- 浏览: 144986 次
- 性别:
- 来自: 北京
最新评论
-
jsboy123:
大神可以给我一份吗,757624760@qq.com
Hibernate NamingStrategy方式 向月表中写日志 -
shi12957:
您好,我现在用JBPM4.4用到其定时器功能,我发现按照例子里 ...
JBPM中 使用JobExecutor执行timer定义的job -
ilemma:
SLF4J: Failed to load class &qu ...
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder"问题解决 -
tuoxiaohu:
能否给我一份完整代码 谢谢!thoot_235@163.com ...
Hibernate NamingStrategy方式 向月表中写日志 -
liangfeng366:
...
JBPM中 使用JobExecutor执行timer定义的job
文章列表
Bin Dec Hex 缩写/字符 解释
0000 0000 0 00 NUL (null) 空字符
0000 0001 1 01 SOH (start of handing) 标题开始
0000 0010 2 02 STX (start of text) 正文开始
0000 ...
对同样数量的随机整数数组进行排序,比较排序计算的耗时
硬件环境:HP笔记本 nx6330 CPU T5600 1.83G 内存2G
软件环境:Java1.5
测试时间:2008-6-15
数据用途:相同条件下各种排序算法在实际运行效果的简单比较测试,最后的结果数据随着软硬件性能提高肯定会越来越好,但算法效率之间的差别会永远存在。
一.性能较差的算法:
1. 冒泡(性能最差算法)
BubbleSort loadTime: 57109ms/10万 (测试数据量10万随机整数)
2. 插入法
InsertSort loadTime: 23297ms/10万
3. 选择法
Se ...
正则表达式测试源码
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexTestHarness {
// Sample
// Enter your regex: a{3}
// Enter input string to search: aaaaaaaaa
// I found the text "aaa" starting at index 0 and ending at index 3.
// ...