Longest Substring Without Repeating Characters 这个问题是要求找到字符串中最长的没有重复字母的子字符串。这个问题就是要找到一个窗口,使得这个窗口里面的字母不重复。解决方法:维持一个滑动窗口,这个滑动窗口的大小是不固定的,每次滑动窗口向右边扩展,如果右边的 ...
分类:
其他好文 时间:
2018-07-31 17:02:49
阅读次数:
119
Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the leng ...
分类:
其他好文 时间:
2018-07-28 00:12:27
阅读次数:
119
1.quartz介绍和下载 官网:http://www.quartz-scheduler.org/ Quartz是OpenSymphony开源组织在Job scheduling领域又一个开源项目,它可以与J2EE与J2SE应用程序相结合也可以单独使用。Quartz可以用来创建简单或为运行十个,百个, ...
分类:
其他好文 时间:
2018-07-24 19:28:36
阅读次数:
184
https://beta.atcoder.jp/contests/abc103 A - Task Scheduling Problem Time Limit: 2 sec / Memory Limit: 1024 MB Score : 100100 points Problem Statement ...
分类:
其他好文 时间:
2018-07-24 17:55:10
阅读次数:
144
堆栈大小在运行程序时起着重要作用1. 程序中堆栈的最大大小是多少?在Linux上,可以使用ulimit命令获得允许的最大堆栈大小。[root@web11 c]# ulimit -a
core file size????????? (blocks, -c) 0
data seg size?????????? (kbytes, -d) unlimited
scheduling priority
分类:
其他好文 时间:
2018-07-24 10:20:26
阅读次数:
184
线程安全定义 "A class is thread-safe if it behaves correctly when accessed from multiple threads, regardless of the scheduling or interleaving of the execut ...
分类:
编程语言 时间:
2018-07-21 20:32:57
阅读次数:
158
问题描述: Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which th ...
分类:
Web程序 时间:
2018-07-15 12:27:37
阅读次数:
239
2018-06-29 22:56:24 问题描述: 问题求解: 本题是一条字符串问题,且是求Optimal,自然最初想到的是使用DP来进行求解,但是问题就是如果采用DP的话,前一个状态也太多了,和替换了多少了k值相关,因此从这个角度来说,使用DP来处理本题是不太合适的。 那么,另一个处理的手段滑动窗 ...
分类:
其他好文 时间:
2018-06-30 00:24:15
阅读次数:
164
Repeating Characters Repeating Characters Time Limit: 2000/1000ms (Java/Others) Time Limit: 2000/1000ms (Java/Others) Problem Description: For this pr ...
分类:
其他好文 时间:
2018-06-27 22:25:24
阅读次数:
146
Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the leng ...
分类:
其他好文 时间:
2018-06-24 14:02:55
阅读次数:
154