Given a string, find the first non-repeating character in it and return it's index. If it doesn't exist, return -1. Examples: Note: You may assume the ...
分类:
其他好文 时间:
2017-07-16 15:52:12
阅读次数:
149
一. 题目描写叙述 Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating ...
分类:
其他好文 时间:
2017-07-16 13:40:04
阅读次数:
207
一、简介:Quartz是OpenSymphony开源组织在Job scheduling领域又一个开源项目,它可以与J2EE与J2SE应用程序相结合也可以单独使用。Quartz可以用来创建简单或为运行十个,百个,甚至是好几万个Jobs这样复杂的程序。Jobs可以做成标准的Java组件或 EJBs。Qu ...
分类:
编程语言 时间:
2017-07-12 23:05:42
阅读次数:
184
版权声明:本文为博主原创文章,未经博主允许不得转载。 <!-- 定时任务 --> <bean id="schedulerManager" class="org.springframework.scheduling.quartz.SchedulerFactoryBean" <property name ...
分类:
其他好文 时间:
2017-07-12 17:44:48
阅读次数:
200
org.springframework.scheduling.quartz.CronTriggerBean允许你更精确地控制任务的运行时间,只需要设置其cronExpression属性。 一个cronExpression表达式有至少6个(也可能是7个)由空格分隔的时间元素。从左至右,这些元素的定义如 ...
分类:
编程语言 时间:
2017-07-12 15:30:21
阅读次数:
300
题目描述: 找出一个字符串中,不含有相同字符的最长子串。 做法: 开一个200的bool数组标记,Ascll码 是否已经出现过了。遍历即可。 AC代码: class Solution { int a[200]; public: int lengthOfLongestSubstring(string ...
分类:
其他好文 时间:
2017-07-12 13:51:37
阅读次数:
112
laravel任务调度(定时执行任务)任务调度写在app/Console/Kernel.PHP文件schedule中,里面默认有一个例子。在schedule方法里放入自己的执行的代码。比如这个是每一分钟在数据库里插入一条数据。[html]<?phpnamespaceApp\Console;useIlluminate\Console\Scheduling\Schedule..
分类:
其他好文 时间:
2017-07-11 14:46:17
阅读次数:
822
[root@666 ok]# ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) unlimite... ...
分类:
其他好文 时间:
2017-07-04 16:13:19
阅读次数:
215
题目: Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the ...
分类:
其他好文 时间:
2017-06-29 22:36:58
阅读次数:
183
Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the leng ...
分类:
其他好文 时间:
2017-06-29 09:56:19
阅读次数:
154