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-10-25 07:04:13
阅读次数:
208
一、LinkedHashSet集合
HashSet下有子类LinkedHashSet
API文档关于LinkedHashSet的解释:
具有可预知迭代顺序的 Set 接口的哈希表和链接列表实现。此实现与 HashSet 的不同之外在于,后者维护着一个运行于所有条目的双重链接列表。此链接列表定义了迭代顺序,即按照将元素插入到 set 中的顺序(插入顺序)进行迭代。注意,插入顺序不 受在 set...
分类:
编程语言 时间:
2014-10-20 17:25:02
阅读次数:
320
Java集合框架支持以下两个类型的容器:一种是为了存储一个元素集合,简称集合(collection)。另一种是为了存储键/值对,称为图(map).Collection(扩展Collection接口):Set:存储一组不重复的元素;散列集HashSet链式散列集LinkedHashSet:支持对规则集...
分类:
编程语言 时间:
2014-09-24 12:57:26
阅读次数:
237
1)java集合框架的层次结构2)使用Collection接口定义的公用方法对集合和线性表操作3)使用Iterator接口遍历集合4)使用JDK的增强for循环替代迭代Iterator进行集合遍历5)熟悉Set接口,了解何时及如何使用HashSet,LinkedHashSet或TreeHashSet...
分类:
编程语言 时间:
2014-08-12 21:37:14
阅读次数:
326
public static Set> getClasses(ClassLoader classLoader, String pack) { Set> classes = new LinkedHashSet>(); boolean recursive = true; ...
分类:
其他好文 时间:
2014-08-12 16:51:34
阅读次数:
223
List、Map和Set的实现类
1、List实现类
(1)ArrayList
(2)Vector
2、Map实现类
(1)HashMap
(2)Hashtable
3、Set实现类
(1)HashSet
(2)LinkedHashSet
(3)TreeSet
(4)EnumSet...
分类:
其他好文 时间:
2014-07-20 10:48:19
阅读次数:
185
Set接口Set不允许包含相同的元素,如果试图把两个相同元素加入同一个集合中,add方法返回false。Set判断两个对象相同不是使用==运算符,而是根据equals方法。也就是说,只要两个对象用equals方法比较返回true,Set就不
会接受这两个对象。HashSetHashSet有以下特点?...
分类:
其他好文 时间:
2014-06-03 07:14:39
阅读次数:
221