From 35431cbe1b671fc1903b236ffd78c12e8879f3c0 Mon Sep 17 00:00:00 2001 From: Ding Li Date: Wed, 9 Oct 2019 19:24:08 +0800 Subject: [PATCH] fix #48: ArrayList should be Vector in code; the asymmetry of the names LinkedList and Vector is for historical reasons --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d458669..31bac2e 100644 --- a/README.md +++ b/README.md @@ -476,7 +476,7 @@ And there are also two `Set` implementations: With class templates and inheritance, I implemented a hierarchy: - ConstIterable -> Iterable -> Collection -> List -> ArrayList + ConstIterable -> Iterable -> Collection -> List -> Vector(like ArrayList in Java) -> LinkedList -> Set -> ArraySet -> HashSet