From e10baaaf17896354ae95fad8d49ae08650acb534 Mon Sep 17 00:00:00 2001 From: Ghost00 <296776435@qq.com> Date: Mon, 5 Mar 2018 15:14:20 +0800 Subject: [PATCH] =?UTF-8?q?Java=20=E5=AE=B9=E5=99=A8=E7=BA=A0=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 没有 LinkedListHashSet,应为LinkedHashSet --- notes/Java 容器.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/Java 容器.md b/notes/Java 容器.md index 84a41703..5c368ac5 100644 --- a/notes/Java 容器.md +++ b/notes/Java 容器.md @@ -39,7 +39,7 @@ - TreeSet:基于红黑树实现,保持有序,但是查找效率不如 HashSet; -- LinkedListHashSet:具有 HashSet 的查找效率,且内部使用链表维护元素的插入顺序,因此具有有序性。 +- LinkedHashSet:具有 HashSet 的查找效率,且内部使用链表维护元素的插入顺序,因此具有有序性。 ## 3. Queue