From 4b0a7d662794038091dc7a00c7178abbb25541c8 Mon Sep 17 00:00:00 2001 From: FuckYou Date: Wed, 26 Oct 2016 13:21:17 +0400 Subject: [PATCH] ShiftingList -> ShiftingMap ShiftingMap: Fixed bug causing maps added to Map to become misaligned. --- .../collections/{ShiftingList.java => ShiftingMap.java} | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) rename src/com/tofvesson/collections/{ShiftingList.java => ShiftingMap.java} (97%) diff --git a/src/com/tofvesson/collections/ShiftingList.java b/src/com/tofvesson/collections/ShiftingMap.java similarity index 97% rename from src/com/tofvesson/collections/ShiftingList.java rename to src/com/tofvesson/collections/ShiftingMap.java index fc4bf9c..fc4c586 100644 --- a/src/com/tofvesson/collections/ShiftingList.java +++ b/src/com/tofvesson/collections/ShiftingMap.java @@ -4,18 +4,18 @@ package com.tofvesson.collections; import java.util.*; import java.util.function.Predicate; -public class ShiftingList implements Map { +public class ShiftingMap implements Map { final ShiftingSet keys; final ShiftingSet values; final UnchangingSet> entrySet; - public ShiftingList(int maxSize){ + public ShiftingMap(int maxSize){ this(maxSize, 0.75f); } - public ShiftingList(int maxSize, float load){ + public ShiftingMap(int maxSize, float load){ keys = new ShiftingSet<>(maxSize, load); values = new ShiftingSet<>(maxSize, load); entrySet = new UnchangingSet<>(maxSize, load); @@ -63,8 +63,7 @@ public class ShiftingList implements Map { public void putAll(Map m) { ArrayList l = new ArrayList(); ArrayList l1 = new ArrayList(); - m.keySet().stream().filter(this::isKey).forEach(l::add); - m.values().stream().filter(this::isValue).forEach(l1::add); + m.keySet().stream().filter((k)-> this.isKey(k)&& this.isValue(m.get(k))).forEach((v)->{ l.add(v); l1.add(m.get(v)); }); K[] k; V[] v; if(l.size()!=l1.size()){