Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer ...
分类:
其他好文 时间:
2019-01-21 00:31:01
阅读次数:
136
https://blog.csdn.net/shanzhizi/article/details/22949121 https://blog.csdn.net/wwwtovvv/article/details/9343457 https://blog.csdn.net/cfy_phonex/artic ...
分类:
其他好文 时间:
2019-01-17 19:38:27
阅读次数:
292
class Solution { public int lengthOfLongestSubstring(String s) { int res = 0; int left = 0, right = 0; int counter = 0; Map map = new HashMap(); while ...
分类:
其他好文 时间:
2019-01-10 13:20:19
阅读次数:
115
问题描述:在springboot项目中集成quartz时,需要使用到一个import org.springframework.scheduling.quartz.SchedulerFactoryBean这个类,并需要自动注入,在测试代码时,发现无法注入到普通.class文件中,后台报错提示:空指针异 ...
分类:
编程语言 时间:
2019-01-09 11:24:13
阅读次数:
245
import org.apache.commons.lang3.StringUtils; import org.springframework.scheduling.annotation.Scheduled; public class Test { // @Scheduled(cron="0 */1... ...
分类:
其他好文 时间:
2019-01-07 20:47:18
阅读次数:
214
使用一台机器依次加工 N 个组件,组件编号为 1, 2, ..., N,从 0 时刻开始加工。 现在让你将组件分成若干批次分批加工,每个批次由若干编号连续的组件构成,从第一批次开始往后一个一个批次处理。 已知每一次从一个批次跳转到另一个批次需要花费 S 的时间重启机器。对于每一个组件 i,我们知道它... ...
分类:
其他好文 时间:
2019-01-05 15:12:31
阅读次数:
222
题目总链接:https://codeforces.com/contest/1095 A. Repeating Cipher 题意: 给出一个字符串,然后将其“收缩”,不断地将连续的一个、两个只变为一个,问最终的字符串是什么。 题解: 模拟一下就好了。 代码如下: #include <bits/std ...
分类:
其他好文 时间:
2019-01-02 01:23:52
阅读次数:
143
Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer ...
分类:
其他好文 时间:
2019-01-01 11:15:59
阅读次数:
117
Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer ...
分类:
其他好文 时间:
2019-01-01 11:07:51
阅读次数:
169
Codeforces Round 529(Div.3)个人题解 前言: 闲来无事补了前天的cf,想着最近刷题有点点怠惰,就直接一场cf一场cf的刷算了,以后的题解也都会以每场的形式写出来 A. Repeating Cipher "传送门" 题意:第一个字母写一次,第二个字母写两次,依次递推,求原字符 ...
分类:
其他好文 时间:
2018-12-30 02:52:40
阅读次数:
186