Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.If the fractional part is repeating,...
分类:
其他好文 时间:
2014-12-18 23:39:14
阅读次数:
381
int longestSubString(char* arr, int len){ if (arr == NULL || len <= 0) return 0; int i = 0, j = 0; int maxLen = 0; bool exist[256] ...
分类:
其他好文 时间:
2014-12-17 22:34:06
阅读次数:
177
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.If the fractional part is repeating,...
分类:
其他好文 时间:
2014-12-17 22:27:05
阅读次数:
241
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.If the fractional part is repeating,...
分类:
其他好文 时间:
2014-12-17 14:17:32
阅读次数:
193
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:
其他好文 时间:
2014-12-15 00:00:53
阅读次数:
329
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without
repeating letters for "abcabcbb" is "abc", which the length is 3. Fo...
分类:
其他好文 时间:
2014-12-12 11:49:07
阅读次数:
132
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without
repeating letters for "abcabcbb" is "abc", which the length is 3. Fo...
分类:
其他好文 时间:
2014-12-11 22:33:05
阅读次数:
403
root:/ # logcat | grep -i nfc I/BackupManagerService( 2320): Scheduling backup for new app com.android.nfcD/BackupManagerService( 2320): Now staging b...
分类:
其他好文 时间:
2014-12-11 12:00:32
阅读次数:
683
前不久一直在学习Qztaz,干好写了一个案例分享一下给大家,希望大家可以用得到。那么现在开始吧,一:什么事Qutaz?Quartz是OpenSymphony开源组织在Job scheduling领域又一个开源项目,它可以与J2EE与J2SE应用程序相结合也可以单独使用。Quartz可以用来创建简单或...
分类:
编程语言 时间:
2014-12-11 11:54:16
阅读次数:
1017
版本说明Spring3.1以下只能与quartz.1.x进行整合原因是
spring3.0.5中org.springframework.scheduling.quartz.CronTriggerBean继承了org.quartz.CronTrigger(public class CronTriggerBeanextends
CronTrigger),而在quartz2.1.3中org.qua...
分类:
编程语言 时间:
2014-12-10 16:29:26
阅读次数:
449