1、volley项目地址https://github.com/smanikandan14/Volley-demo(1) JSON,图像等的异步下载;(2) 网络请求的排序(scheduling)(3) 网络请求的优先级处理(4) 缓存(5) 多级别取消请求(6) 和Activity和生命周期的联动(...
分类:
移动开发 时间:
2015-06-04 11:38:14
阅读次数:
594
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. For ...
分类:
其他好文 时间:
2015-06-02 09:24:48
阅读次数:
113
public class Solution { public int lengthOfLongestSubstring(String s) { if (s == null || s.length() == 0) { return 0; } ...
分类:
其他好文 时间:
2015-06-02 06:50:27
阅读次数:
110
题目:Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters...
分类:
其他好文 时间:
2015-05-30 16:35:41
阅读次数:
96
LeetCode -- Longest Substring Without Repeating Characters...
分类:
其他好文 时间:
2015-05-29 18:05:31
阅读次数:
124
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...
分类:
其他好文 时间:
2015-05-28 19:59:44
阅读次数:
129
第三道题Longest
Substring Without Repeating Characters如下:
public class Solution {
public int lengthOfLongestSubstring(String s) {
HashMap hs = new HashMap();
int maxl = 0;...
分类:
编程语言 时间:
2015-05-28 08:15:38
阅读次数:
264
使用spring定时任务包Quartz时,必须使用Quartz1.85以下版本的。? ??? 查看发现spring3.0.5中org.springframework.scheduling.quartz.CronTriggerBean继承了? ????org.quartz.CronTrigger(public cl...
分类:
编程语言 时间:
2015-05-22 22:43:05
阅读次数:
201
leetcode 3 – Longest Substring Without Repeating Characters
题目:
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without r...
分类:
其他好文 时间:
2015-05-21 17:27:00
阅读次数:
110