使用双指针,i遍历全部字符,start收集重复的次数,最后不重复出现的字符个数maxx为i-start+1;// main.cpp// Longest Substring//// Created by Bowie Hsu on 14/11/21.// Copyright (c) 2014年 Bowi...
分类:
其他好文 时间:
2014-11-24 13:21:59
阅读次数:
142
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:
其他好文 时间:
2014-11-23 14:21:58
阅读次数:
205
在spring的<task:*> XML名字空间功能一样,使用在Configuration类如下: ?? ?@Configuration ?? ?@EnableScheduling ?? ?public class AppConfig { ?? ??? ?//@Bean 定义 ?? ?} ?? ?在sprin...
分类:
其他好文 时间:
2014-11-21 06:59:16
阅读次数:
220
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-11-19 01:35:20
阅读次数:
199
1. Round-Robin Scheduling Algorithm: 时间片轮转调度
名字来源很有意思:古时候人们写联名上书反对领导时,为了避免当出头鸟,觉得把所有的签名写成一个环,于是领导就无法抓典型了。
CPU 如何处理那么多得线程,如何决定那个先run,run 多长时间?时间片轮转算法是其中重要的一个。
时间片轮转调度是一种最古老,最简单,最公平且使用最广的算法。每个进...
分类:
其他好文 时间:
2014-11-18 11:53:21
阅读次数:
169
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:
其他好文 时间:
2014-11-17 22:29:25
阅读次数:
242
题意: n个数(1~n)取出r个数,取出的数相差要>=k, 然后分成m个可空组,问有多少种情况。解法: 先看从n个数中取r个相差>=k的数的方法数,可以发现 dp[i][j] = dp[1][j-1] + dp[2][j-1] + ... + dp[i-k][j-1],(dp[i][1] = i) ...
分类:
系统相关 时间:
2014-11-16 01:51:21
阅读次数:
274
简介
Spring包含了对定时调度服务的内置支持类。当前,Spring支持从JDK1.3开始内置的Timer类和Quartz Scheduler(http://www.opensymphony.com/quartz/)。二者都可以通过FactoryBean,分别指向Timer或Trigger实例的引用进行配置。更进一步,有个对Quartz
Scheduler和Timer都有效的工具类...
分类:
编程语言 时间:
2014-11-14 15:45:35
阅读次数:
375
一般图匹配带花树模版题:
将奇环缩成圈(Blossom),然后找增广路.....
1099. Work Scheduling
Time limit: 0.5 second
Memory limit: 64 MB
There is certain amount of night guards that are available to protect t...
分类:
其他好文 时间:
2014-11-05 17:26:01
阅读次数:
225
HDU 4045 Machine scheduling (组合数学-斯特林数,组合数学-排列组合)
解题思路:
这题考的是排列组合...
分类:
系统相关 时间:
2014-11-03 00:05:35
阅读次数:
318