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. F...
分类:
其他好文 时间:
2015-05-20 02:18:57
阅读次数:
100
题目描述
问题分析
代码
总结
个人声明题目描述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”, whic...
分类:
其他好文 时间:
2015-05-18 18:54:52
阅读次数:
99
一、Quartz的特点*按作业类的继承方式来分,主要有以下两种:1.作业类继承org.springframework.scheduling.quartz.QuartzJobBean类的方式2.作业类不继承org.springframework.scheduling.quartz.QuartzJobB...
分类:
编程语言 时间:
2015-05-18 16:17:18
阅读次数:
214
题目:
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 ...
分类:
其他好文 时间:
2015-05-13 19:51:47
阅读次数:
145
1、volley项目地址 https://github.com/smanikandan14/Volley-demo(1) JSON,图像等的异步下载;(2) 网络请求的排序(scheduling)(3) 网络请求的优先级处理(4) 缓存(5) 多级别取消请求(6) 和Activity和生命周期的联动...
分类:
移动开发 时间:
2015-05-13 10:09:12
阅读次数:
200
https://leetcode.com/problems/longest-substring-without-repeating-characters/ Given a string, find the length of the longest substring without repeati...
分类:
其他好文 时间:
2015-05-10 23:36:51
阅读次数:
159
Longest Substring Without Repeating Characters Total Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters...
分类:
其他好文 时间:
2015-05-10 17:24:44
阅读次数:
145
1.定义2.作用3.和进程的比较4.多线程(multithreading)的优点和缺陷5.调度(scheduling)6.线程相关概念定义线程就是最小的可编程指令序列,是进程的子集。一个进程由一个或多个线程组成。作用线程的作用就是要加速程序的执行,提高计算机的性能,满足多任务需求。比如word,你可...
分类:
其他好文 时间:
2015-05-10 16:59:14
阅读次数:
118
拖延症太严重了TAT,真心要处理一下这个问题了,感觉很不好!----------------------------------------------------------------------------------------------------------------Longes.....
分类:
其他好文 时间:
2015-05-10 00:53:28
阅读次数:
127
https://leetcode.com/problems/longest-substring-without-repeating-characters/
题目: 找一个字符串的连续子串,使得该子串里不含相同字母,求符合条件的最长的子串的长度。
算法: DP----后缀思想
最初考虑过用二分答案,发现复杂度应该是O(n*n*log(n)),其中n*n验证一个答案对不对,log(n)是...
分类:
其他好文 时间:
2015-05-09 20:31:16
阅读次数:
126