From 39cca70771fbfb4d5aed1925073256683b86a7cc Mon Sep 17 00:00:00 2001 From: WinJ <winstonjodjana@gmail.com> Date: Mon, 24 Jan 2022 14:59:05 -0800 Subject: [PATCH] MTFList find or insert must move to front of the list --- .../java/datastructures/dictionaries/MoveToFrontList.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/datastructures/dictionaries/MoveToFrontList.java b/src/main/java/datastructures/dictionaries/MoveToFrontList.java index f08dfbe..9096d2b 100644 --- a/src/main/java/datastructures/dictionaries/MoveToFrontList.java +++ b/src/main/java/datastructures/dictionaries/MoveToFrontList.java @@ -9,9 +9,9 @@ import java.util.Iterator; /** * 1. The list is typically not sorted. * 2. Add new items to the front of the list. - * 3. Whenever find is called on an item, move it to the front of the - * list. This means you remove the node from its current position - * and make it the first node in the list. + * 3. Whenever find or insert is called on an existing key, move it + * to the front of the list. This means you remove the node from its + * current position and make it the first node in the list. * 4. You need to implement an iterator. The iterator SHOULD NOT move * elements to the front. The iterator should return elements in * the order they are stored in the list, starting with the first -- GitLab