LeetCode OJ 3: Given a string, find the length of the longest substring without repeating characters. Given "abcabcbb", the answer is "abc", which the ...
分类:
其他好文 时间:
2016-07-12 21:00:52
阅读次数:
173
Machine Schedule Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Description As we all know, machine scheduling is a ...
分类:
系统相关 时间:
2016-07-10 21:49:04
阅读次数:
223
Machine Schedule Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 13977 Accepted: 5973 Description As we all know, machine scheduling is a v ...
分类:
其他好文 时间:
2016-07-01 18:20:05
阅读次数:
156
最近做一个 Spring4.1.0 集成 quartz1.8.2 定时器功能,一直报 class not found : org.springframework.scheduling.quartz.JobDetailBean ; 困扰许久,后来仔细检查发现问题为 :spring-context-su ...
分类:
编程语言 时间:
2016-07-01 11:47:09
阅读次数:
307
3. Longest Substring Without Repeating Characters 我的DP解法,可行 需要 hashmap 辅助保存各个字符的位置,且随时更新最新位置 若第 i 个位置的字符 c 出现过,则 dp[i] = min(map.get(c)-i,dp[i+1]+1) 若 ...
分类:
其他好文 时间:
2016-06-30 18:00:56
阅读次数:
127
Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the leng ...
分类:
其他好文 时间:
2016-06-28 00:40:00
阅读次数:
162
Difficulty: Medium Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "a ...
分类:
其他好文 时间:
2016-06-26 23:48:37
阅读次数:
137
Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the leng ...
分类:
其他好文 时间:
2016-06-25 22:55:43
阅读次数:
158
什么是QuartzQuartz是一个作业调度系统(a job scheduling system),Quartz不但可以集成到其他的软件系统中,而且也可以独立运行的;在本文中“job scheduler”的意思是:一个负责在约定的时间到达时执行(或通知)其他软件控件的方法。Quartz是非常灵活的,为了实现我们的需求Quartz包含了许多可以独立或被集成使用的典型范例,同时使我们编写项目中的代码也觉...
分类:
编程语言 时间:
2016-06-24 15:55:46
阅读次数:
187
1 HIRPO20160601: Large Scale Heterogeneous Data ProcessingSubject: resource scheduling It is also likely that the computing environment is heterogeneo ...
分类:
其他好文 时间:
2016-06-23 15:48:08
阅读次数:
344