Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.organicdesign.fp.collections.PersistentTreeMap Maven / Gradle / Ivy
/**
Copyright (c) Rich Hickey. All rights reserved. The use and distribution terms for this software are covered by the
Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can be found in the file epl-v10.html
at the root of this distribution. By using this software in any fashion, you are agreeing to be bound by the terms of
this license. You must not remove this notice, or any other, from this software.
*/
/* rich May 20, 2006 */
package org.organicdesign.fp.collections;
import org.organicdesign.fp.Option;
import java.util.Collections;
import java.util.Comparator;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.Objects;
import java.util.SortedMap;
import java.util.Stack;
/**
Persistent Red Black Tree. Note that instances of this class are constant values
i.e. add/remove etc return new values.
See Okasaki, Kahrs, Larsen et al
This file is a derivative work based on a Clojure collection licensed under the Eclipse Public
License 1.0 Copyright Rich Hickey
@author Rich Hickey (Primary author)
@author Glen Peterson (Java-centric editor)
*/
public class PersistentTreeMap implements ImSortedMap {
// TODO: Replace with Mutable.Ref, or make methods return Tuple2.
private class Box {
public E val;
public Box(E val) { this.val = val; }
}
private final Comparator super K> comp;
private final Node tree;
private final int size;
/**
Be extremely careful with this because it uses the default comparator, which only works for items that implement
Comparable (have a "natural ordering"). An attempt to use it with other items will blow up at runtime. Either
a withComparator() method will be added, or this will be removed.
*/
final static public PersistentTreeMap EMPTY = new PersistentTreeMap<>(Equator.defaultComparator(), null, 0);
/**
Be extremely careful with this because it uses the default comparator, which only works for items that implement
Comparable (have a "natural ordering"). An attempt to use it with other items will blow up at runtime. Either
a withComparator() method will be added, or this will be removed.
*/
@SuppressWarnings("unchecked")
public static , V> PersistentTreeMap empty() {
return (PersistentTreeMap) EMPTY;
}
/** Returns a new empty PersistentTreeMap that will use the specified comparator. */
public static PersistentTreeMap empty(Comparator super K> c) {
return new PersistentTreeMap<>(c, null, 0);
}
private PersistentTreeMap(Comparator super K> c, Node t, int n) {
comp = c; tree = t; size = n;
}
/** Returns a new PersistentTreeMap of the given comparable keys and their paired values. */
public static ,V> PersistentTreeMap of() {
return empty();
}
/**
Returns a new PersistentTreeMap of the given comparable keys and their paired values, skipping any null Entries.
*/
public static ,V> PersistentTreeMap
of(Iterable> es) {
if (es == null) { return empty(); }
PersistentTreeMap map = new PersistentTreeMap<>(Equator.defaultComparator(), null, 0);
for (Map.Entry entry : es) {
if (entry != null) {
map = map.assoc(entry.getKey(), entry.getValue());
}
}
return map;
}
/** Returns a new PersistentTreeMap of the specified comparator and the given key/value pairs. */
public static PersistentTreeMap
ofComp(Comparator super K> c, Iterable> es) {
if (es == null) { return new PersistentTreeMap<>(c, null, 0); }
PersistentTreeMap map = new PersistentTreeMap<>(c, null, 0);
for (Map.Entry entry : es) {
if (entry != null) {
map = map.assoc(entry.getKey(), entry.getValue());
}
}
return map;
}
/**
Returns a view of the mappings contained in this map. The set should actually contain UnmodMap.Entry items, but that
return signature is illegal in Java, so you'll just have to remember.
*/
@Override public ImSortedSet> entrySet() {
// This is the pretty way to do it.
// return this.foldLeft(ImSet.empty(), (accum, entry) -> accum.put(entry));
// This may be faster, but I haven't timed it.
// Preserve comparator!
ImSortedSet> ret = PersistentTreeSet.ofComp((a, b) -> comp.compare(a.getKey(), b.getKey()));
UnmodIterator> iter = this.iterator();
while (iter.hasNext()) { ret = ret.put(iter.next()); }
return ret;
}
/** This is correct, but O(n). */
@Override public int hashCode() { return (size() == 0) ? 0 : UnmodIterable.hashCode(entrySet()); }
public static final Equator EQUATOR = new Equator() {
@Override
public int hash(SortedMap kvSortedMap) {
return UnmodIterable.hashCode(kvSortedMap.entrySet());
}
@Override
public boolean eq(SortedMap o1, SortedMap o2) {
if (o1 == o2) { return true; }
if ( o1.size() != o2.size() ) { return false; }
return UnmodSortedIterable.equals(UnmodSortedIterable.castFromSortedMap(o1), UnmodSortedIterable.castFromSortedMap(o2));
}
};
/**
When comparing against a SortedMap, this is correct and O(n) fast, but BEWARE! It is also compatible with
java.util.Map which unfortunately means equality as defined by this method (and java.util.AbstractMap) is not
commutative when comparing ordered and unordered maps (it is also O(n log n) slow). The Equator defined by this
class prevents comparison with unordered Maps.
*/
@Override public boolean equals(Object other) {
if (this == other) { return true; }
// Note: It does not make sense to compare an ordered map with an unordered map.
// This is a bug, but it's the *same* bug that java.util.AbstractMap has.
// there is a javaBug unit test. When that fails, we can fix this to be correct instead of
// what it currently is (most politely called "compatible with existing API's").
if ( !(other instanceof Map) ) { return false; }
Map that = (Map) other;
if (size != that.size()) { return false; }
// Yay, this makes sense, and we can compare these with O(n) efficiency while still maintaining compatibility
// with java.util.Map.
if (other instanceof SortedMap) {
return UnmodSortedIterable.equals(this, UnmodSortedIterable.castFromSortedMap((SortedMap) other));
}
// This makes no sense and takes O(n log n) or something.
// It's here to be compatible with java.util.AbstractMap.
// java.util.TreeMap doesn't involve the comparator, and its effect plays out in the order
// of the values. I'm uncomfortable with this, but for now I'm aiming for
// Compatibility with TreeMap.
try {
for (Entry e : entrySet()) {
K key = e.getKey();
V value = e.getValue();
Object thatValue = that.get(key);
if (value == null) {
if ( (thatValue != null) || !that.containsKey(key) )
return false;
} else {
if ( !value.equals(thatValue) )
return false;
}
}
} catch (ClassCastException ignore) {
return false;
} catch (NullPointerException ignore) {
return false;
}
return true;
}
// /** Returns a view of the keys contained in this map. */
// @Override public ImSet keySet() { return PersistentTreeSet.ofMap(this); }
/** {@inheritDoc} */
@Override public ImSortedMap subMap(K fromKey, K toKey) {
int diff = comp.compare(fromKey, toKey);
if (diff > 0) {
throw new IllegalArgumentException("fromKey is greater than toKey");
}
UnEntry last = last();
K lastKey = last.getKey();
int compFromKeyLastKey = comp.compare(fromKey, lastKey);
// If no intersect, return empty. We aren't checking the toKey vs. the firstKey() because that's a single pass
// through the iterator loop which is probably as cheap as checking here.
if ( (diff == 0) || (compFromKeyLastKey > 0) ) {
return new PersistentTreeMap<>(comp, null, 0);
}
// If map is entirely contained, just return it.
if ( (comp.compare(fromKey, firstKey()) <= 0) &&
(comp.compare(toKey, lastKey) > 0) ) {
return this;
}
// Don't iterate through entire map for only the last item.
if (compFromKeyLastKey == 0) {
return ofComp(comp, Collections.singletonList(last));
}
ImSortedMap ret = new PersistentTreeMap<>(comp, null, 0);
UnmodIterator> iter = this.iterator();
while (iter.hasNext()) {
UnEntry next = iter.next();
K key = next.getKey();
if (comp.compare(toKey, key) <= 0) {
break;
}
if (comp.compare(fromKey, key) > 0) {
continue;
}
ret = ret.assoc(key, next.getValue());
}
return ret;
}
/** Returns a string describing the first few items in this map (for debugging). */
@Override public String toString() {
StringBuilder sB = new StringBuilder("PersistentTreeMap(");
int i = 0;
for (UnEntry entry : this) {
if (i > 0) { sB.append(","); }
if (i > 4) { break; }
sB.append("UnEntry(").append(entry.getKey()).append(",").append(entry.getValue()).append(")");
i++;
}
if (i < size()) {
sB.append("...");
}
return sB.append(")").toString();
}
// /** {@inheritDoc} */
// @Override public UnmodCollection values() {
// class ValueColl implements UnmodCollection, UnmodSortedIterable {
// private final Function0>> iterFactory;
// private ValueColl(Function0>> f) { iterFactory = f; }
//
// @Override public int size() { return size; }
//
// @Override public UnmodSortedIterator iterator() {
// final UnmodSortedIterator> iter = iterFactory.apply();
// return new UnmodSortedIterator() {
// @Override public boolean hasNext() { return iter.hasNext(); }
// @Override public B next() { return iter.next().getValue(); }
// };
// }
// @Override public int hashCode() { return UnmodIterable.hashCode(this); }
// @Override public boolean equals(Object o) {
// if (this == o) { return true; }
// if ( !(o instanceof UnmodSortedIterable) ) { return false; }
// return UnmodSortedIterable.equals(this, (UnmodSortedIterable) o);
// }
// @Override public String toString() { return UnmodSortedIterable.toString("ValueColl", this); }
// }
// return new ValueColl<>(() -> this.iterator());
// }
/** {@inheritDoc} */
@Override public Option> head() {
Node t = tree;
if (t != null) {
while (t.left() != null) {
t = t.left();
}
}
return Option.of(t);
}
/** {@inheritDoc} */
@Override public ImSortedMap tailMap(K fromKey) {
UnEntry last = last();
K lastKey = last.getKey();
int compFromKeyLastKey = comp.compare(fromKey, lastKey);
// If no intersect, return empty. We aren't checking the toKey vs. the firstKey() because that's a single pass
// through the iterator loop which is probably as cheap as checking here.
if (compFromKeyLastKey > 0) {
return new PersistentTreeMap<>(comp, null, 0);
}
// If map is entirely contained, just return it.
if (comp.compare(fromKey, firstKey()) <= 0) {
return this;
}
// Don't iterate through entire map for only the last item.
if (compFromKeyLastKey == 0) {
return ofComp(comp, Collections.singletonList(last));
}
ImSortedMap ret = new PersistentTreeMap<>(comp, null, 0);
UnmodIterator> iter = this.iterator();
while (iter.hasNext()) {
UnEntry next = iter.next();
K key = next.getKey();
if (comp.compare(fromKey, key) > 0) {
continue;
}
ret = ret.assoc(key, next.getValue());
}
return ret;
}
// /** {@inheritDoc} */
// @Override public Sequence> tail() {
// if (size() > 1) {
// return without(firstKey());
//// // The iterator is designed to do this quickly. It also prevents an infinite loop here.
//// UnmodIterator> iter = this.iterator();
//// // Drop the head
//// iter.next();
//// return tailMap(iter.next().getKey());
// }
// return Sequence.emptySequence();
// }
// @SuppressWarnings("unchecked")
// static public PersistentTreeMap create(ISeq items) {
// PersistentTreeMap ret = empty();
// for (; items != null; items = items.next().next()) {
// if (items.next() == null)
// throw new IllegalArgumentException(String.format("No value supplied for key: %s", items.head()));
// ret = ret.assoc((K) items.head(), (V) RT.second(items));
// }
// return ret;
// }
// @SuppressWarnings("unchecked")
// static public
// PersistentTreeMap create(Comparator super K> comp, ISeq items) {
// PersistentTreeMap ret = new PersistentTreeMap<>(comp);
// for (; items != null; items = items.next().next()) {
// if (items.next() == null)
// throw new IllegalArgumentException(String.format("No value supplied for key: %s", items.head()));
// ret = ret.assoc((K) items.head(), (V) RT.second(items));
// }
// return ret;
// }
/**
Returns the comparator used to order the keys in this map, or null if it uses Function2.DEFAULT_COMPARATOR
(for compatibility with java.util.SortedMap).
*/
@Override public Comparator super K> comparator() { return (comp == Equator.DEFAULT_COMPARATOR) ? null : comp; }
// /** Returns true if the map contains the given key. */
// @SuppressWarnings("unchecked")
// @Override public boolean containsKey(Object key) {
// return entryAt((K) key) != null;
// }
// /** Returns the value associated with the given key. */
// @SuppressWarnings("unchecked")
// @Override
// public V get(Object key) {
// if (key == null) { return null; }
// Entry entry = entryAt((K) key);
// if (entry == null) { return null; }
// return entry.getValue();
// }
// public PersistentTreeMap assocEx(K key, V val) {
// Inherits default implementation of assocEx from IPersistentMap
/** {@inheritDoc} */
@Override public PersistentTreeMap assoc(K key, V val) {
Box> found = new Box<>(null);
Node t = add(tree, key, val, found);
//null == already contains key
if (t == null) {
Node foundNode = found.val;
//note only get same collection on identity of val, not equals()
if (foundNode.val() == val) {
return this;
}
return new PersistentTreeMap<>(comp, replace(tree, key, val), size);
}
return new PersistentTreeMap<>(comp, t.blacken(), size + 1);
}
/** {@inheritDoc} */
@Override public PersistentTreeMap without(K key) {
Box> found = new Box<>(null);
Node t = remove(tree, key, found);
if (t == null) {
//null == doesn't contain key
if (found.val == null) {
return this;
}
//empty
return new PersistentTreeMap<>(comp, null, 0);
}
return new PersistentTreeMap<>(comp, t.blacken(), size - 1);
}
// @Override
// public ISeq> seq() {
// if (size > 0)
// return Iter.create(tree, true, size);
// return null;
// }
//
// @Override
// public ISeq> rseq() {
// if (size > 0)
// return Iter.create(tree, false, size);
// return null;
// }
// @Override
// public Object entryKey(Map.Entry entry) {
// return entry.getKey();
// }
// // I don't know what to do with this.
//// The other methods on Sorted seem to care only about the key, and the implementations of them
//// here work that way. This one, however, returns a sequence of Map.Entry or Node
//// If I understood why, maybe I could do better.
// @SuppressWarnings("unchecked")
// @Override
// public ISeq> seq(boolean ascending) {
// if (size > 0)
// return Iter.create(tree, ascending, size);
// return null;
// }
// @SuppressWarnings("unchecked")
// @Override
// public ISeq> seqFrom(Object key, boolean ascending) {
// if (size > 0) {
// ISeq> stack = null;
// Node t = tree;
// while (t != null) {
// int c = doCompare((K) key, t.key);
// if (c == 0) {
// stack = RT.cons(t, stack);
// return new Iter<>(stack, ascending);
// } else if (ascending) {
// if (c < 0) {
// stack = RT.cons(t, stack);
// t = t.left();
// } else
// t = t.right();
// } else {
// if (c > 0) {
// stack = RT.cons(t, stack);
// t = t.right();
// } else
// t = t.left();
// }
// }
// if (stack != null)
// return new Iter<>(stack, ascending);
// }
// return null;
// }
/** {@inheritDoc} */
@Override
public UnmodSortedIterator> iterator() { return new NodeIterator<>(tree, true); }
// public NodeIterator reverseIterator() { return new NodeIterator<>(tree, false); }
/** Returns the first key in this map or throws a NoSuchElementException if the map is empty. */
@Override public K firstKey() {
if (size() < 1) { throw new NoSuchElementException("this map is empty"); }
return head().get().getKey();
}
/** Returns the last key in this map or throws a NoSuchElementException if the map is empty. */
@Override public K lastKey() {
UnEntry max = last();
if (max == null) {
throw new NoSuchElementException("this map is empty");
}
return max.getKey();
}
/** Returns the last key/value pair in this map, or null if the map is empty. */
public UnEntry last() {
Node t = tree;
if (t != null) {
while (t.right() != null)
t = t.right();
}
return t;
}
// public int depth() {
// return depth(tree);
// }
// int depth(Node t) {
// if (t == null)
// return 0;
// return 1 + Math.max(depth(t.left()), depth(t.right()));
// }
// public Object valAt(Object key){
// Default implementation now inherited from ILookup
/** Returns the number of key/value mappings in this map. */
@Override public int size() { return size; }
/** Returns an Option of the key/value pair matching the given key, or Option.none() if the key is not found. */
@Override public Option> entry(K key) {
Node t = tree;
while (t != null) {
int c = comp.compare(key, t.key);
if (c == 0)
return Option.of(t);
else if (c < 0)
t = t.left();
else
t = t.right();
}
return Option.none(); // t; // t is always null
}
// // In TreeMap, this is final Entry getEntry(Object key)
// /** Returns the key/value pair matching the given key, or null if the key is not found. */
// public UnEntry entryAt(K key) {
// Node t = tree;
// while (t != null) {
// int c = comp.compare(key, t.key);
// if (c == 0)
// return t;
// else if (c < 0)
// t = t.left();
// else
// t = t.right();
// }
// return null; // t; // t is always null
// }
private Node add(Node t, K key, V val, Box> found) {
if (t == null) {
if (val == null)
return new Red<>(key);
return new RedVal<>(key, val);
}
int c = comp.compare(key, t.key);
if (c == 0) {
found.val = t;
return null;
}
Node ins = c < 0 ? add(t.left(), key, val, found) : add(t.right(), key, val, found);
if (ins == null) //found below
return null;
if (c < 0)
return t.addLeft(ins);
return t.addRight(ins);
}
private Node remove(Node t, K key, Box> found) {
if (t == null)
return null; //not found indicator
int c = comp.compare(key, t.key);
if (c == 0) {
found.val = t;
return append(t.left(), t.right());
}
Node del = c < 0 ? remove(t.left(), key, found) : remove(t.right(), key, found);
if (del == null && found.val == null) //not found below
return null;
if (c < 0) {
if (t.left() instanceof Black)
return balanceLeftDel(t.key, t.val(), del, t.right());
else
return red(t.key, t.val(), del, t.right());
}
if (t.right() instanceof Black)
return balanceRightDel(t.key, t.val(), t.left(), del);
return red(t.key, t.val(), t.left(), del);
// return t.removeLeft(del);
// return t.removeRight(del);
}
//static
//Node concat(Node left, Node right){
@SuppressWarnings("unchecked")
private static Node append(Node extends K,? extends V> left,
Node extends K,? extends V> right) {
if (left == null)
return (Node) right;
else if (right == null)
return (Node) left;
else if (left instanceof Red) {
if (right instanceof Red) {
Node app = append(left.right(), right.left());
if (app instanceof Red)
return red(app.key, app.val(),
red(left.key, left.val(), left.left(), app.left()),
red(right.key, right.val(), app.right(), right.right()));
else
return red(left.key, left.val(), left.left(), red(right.key, right.val(), app, right.right()));
} else
return red(left.key, left.val(), left.left(), append(left.right(), right));
} else if (right instanceof Red)
return red(right.key, right.val(), append(left, right.left()), right.right());
else //black/black
{
Node app = append(left.right(), right.left());
if (app instanceof Red)
return red(app.key, app.val(),
black(left.key, left.val(), left.left(), app.left()),
black(right.key, right.val(), app.right(), right.right()));
else
return balanceLeftDel(left.key, left.val(), left.left(), black(right.key, right.val(), app, right.right()));
}
}
private static
Node balanceLeftDel(K1 key, V1 val,
Node extends K,? extends V> del,
Node extends K,? extends V> right) {
if (del instanceof Red)
return red(key, val, del.blacken(), right);
else if (right instanceof Black)
return rightBalance(key, val, del, right.redden());
else if (right instanceof Red && right.left() instanceof Black)
return red(right.left().key, right.left().val(),
black(key, val, del, right.left().left()),
rightBalance(right.key, right.val(), right.left().right(), right.right().redden()));
else
throw new UnsupportedOperationException("Invariant violation");
}
private static
Node balanceRightDel(K1 key, V1 val,
Node extends K,? extends V> left,
Node extends K,? extends V> del) {
if (del instanceof Red)
return red(key, val, left, del.blacken());
else if (left instanceof Black)
return leftBalance(key, val, left.redden(), del);
else if (left instanceof Red && left.right() instanceof Black)
return red(left.right().key, left.right().val(),
leftBalance(left.key, left.val(), left.left().redden(), left.right().left()),
black(key, val, left.right().right(), del));
else
throw new UnsupportedOperationException("Invariant violation");
}
private static
Node leftBalance(K1 key, V1 val,
Node extends K,? extends V> ins,
Node extends K,? extends V> right) {
if (ins instanceof Red && ins.left() instanceof Red)
return red(ins.key, ins.val(), ins.left().blacken(), black(key, val, ins.right(), right));
else if (ins instanceof Red && ins.right() instanceof Red)
return red(ins.right().key, ins.right().val(),
black(ins.key, ins.val(), ins.left(), ins.right().left()),
black(key, val, ins.right().right(), right));
else
return black(key, val, ins, right);
}
private static
Node rightBalance(K1 key, V1 val,
Node extends K,? extends V> left,
Node extends K,? extends V> ins) {
if (ins instanceof Red && ins.right() instanceof Red)
return red(ins.key, ins.val(), black(key, val, left, ins.left()), ins.right().blacken());
else if (ins instanceof Red && ins.left() instanceof Red)
return red(ins.left().key, ins.left().val(),
black(key, val, left, ins.left().left()),
black(ins.key, ins.val(), ins.left().right(), ins.right()));
else
return black(key, val, left, ins);
}
private Node replace(Node t, K key, V val) {
int c = comp.compare(key, t.key);
return t.replace(t.key,
c == 0 ? val : t.val(),
c < 0 ? replace(t.left(), key, val) : t.left(),
c > 0 ? replace(t.right(), key, val) : t.right());
}
@SuppressWarnings({"unchecked", "RedundantCast", "Convert2Diamond"})
private static
Red red(K1 key, V1 val,
Node extends K,? extends V> left,
Node extends K,? extends V> right) {
if (left == null && right == null) {
if (val == null)
return new Red(key);
return new RedVal(key, val);
}
if (val == null)
return new RedBranch((K) key, (Node) left, (Node) right);
return new RedBranchVal((K) key, (V) val, (Node) left, (Node) right);
}
@SuppressWarnings({"unchecked", "RedundantCast", "Convert2Diamond"})
private static
Black black(K1 key, V1 val,
Node extends K,? extends V> left,
Node extends K,? extends V> right) {
if (left == null && right == null) {
if (val == null)
return new Black<>(key);
return new BlackVal(key, val);
}
if (val == null)
return new BlackBranch((K) key, (Node) left, (Node) right);
return new BlackBranchVal((K) key, (V) val, (Node) left, (Node) right);
}
// public static class Reduced {
// public final A val;
// private Reduced(A a) { val = a; }
// }
private static abstract class Node implements UnEntry {
final K key;
Node(K key) { this.key = key; }
public K key() { return key; }
public V val() { return null; }
@Override
public K getKey() { return key(); }
@Override
public V getValue() { return val(); }
Node left() { return null; }
Node right() { return null; }
abstract Node addLeft(Node ins);
abstract Node addRight(Node ins);
@SuppressWarnings("UnusedDeclaration")
abstract Node removeLeft(Node del);
@SuppressWarnings("UnusedDeclaration")
abstract Node removeRight(Node del);
abstract Node blacken();
abstract Node redden();
Node balanceLeft(Node parent) { return black(parent.key, parent.val(), this, parent.right()); }
Node balanceRight(Node parent) { return black(parent.key, parent.val(), parent.left(), this); }
abstract Node replace(K key, V val, Node left, Node right);
// Not used in this data structure, but these nodes can be returned!
@Override public int hashCode() { return key.hashCode(); }
// Not used in this data structure, but these nodes can be returned!
@Override public boolean equals(Object o) {
if (this == o) { return true; }
if ( !(o instanceof Map.Entry) ) { return false; }
Map.Entry that = (Map.Entry) o;
return Objects.equals(key, that.getKey()) &&
Objects.equals(val(), that.getValue());
}
@Override public String toString() {
return "Node(" + key + ")";
}
// public R kvreduce(Function3 f, R init) {
// if (left() != null) {
// init = left().kvreduce(f, init);
// if (init instanceof Reduced)
// return init;
// }
// init = f.apply(init, key(), val());
// if (init instanceof Reduced)
// return init;
//
// if (right() != null) {
// init = right().kvreduce(f, init);
// }
// return init;
// }
} // end class Node.
private static class Black extends Node {
public Black(K key) { super(key); }
@Override Node addLeft(Node ins) { return ins.balanceLeft(this); }
@Override Node addRight(Node ins) { return ins.balanceRight(this); }
@Override Node removeLeft(Node del) { return balanceLeftDel(key, val(), del, right()); }
@Override Node removeRight(Node del) { return balanceRightDel(key, val(), left(), del); }
@Override Node blacken() { return this; }
@Override Node redden() { return new Red<>(key); }
@Override
Node replace(K key, V val, Node left, Node right) { return black(key, val, left, right); }
}
private static class BlackVal extends Black {
final V val;
public BlackVal(K key, V val) {
super(key);
this.val = val;
}
@Override public V val() { return val; }
@Override Node redden() { return new RedVal<>(key, val); }
// Not used in this data structure, but these nodes can be returned!
@Override public int hashCode() {
// This is specified in java.util.Map as part of the map contract.
return (key == null ? 0 : key.hashCode()) ^
(val == null ? 0 : val.hashCode());
}
// Not used in this data structure, but these nodes can be returned!
@Override public boolean equals(Object o) {
if (this == o) { return true; }
if ( !(o instanceof Map.Entry) ) { return false; }
Map.Entry that = (Map.Entry) o;
return Objects.equals(key, that.getKey()) &&
Objects.equals(val, that.getValue());
}
@Override public String toString() {
return "BlackVal(" + key + "," + val + ")";
}
}
private static class BlackBranch extends Black {
final Node left;
final Node right;
public BlackBranch(K key, Node left, Node right) {
super(key);
this.left = left;
this.right = right;
}
@Override
public Node left() { return left; }
@Override
public Node right() { return right; }
@Override
Node redden() { return new RedBranch<>(key, left, right); }
}
private static class BlackBranchVal extends BlackBranch {
final V val;
public BlackBranchVal(K key, V val, Node left, Node right) {
super(key, left, right);
this.val = val;
}
@Override public V val() { return val; }
@Override Node redden() { return new RedBranchVal<>(key, val, left, right); }
// Not used in this data structure, but these nodes can be returned!
@Override public int hashCode() {
// This is specified in java.util.Map as part of the map contract.
return (key == null ? 0 : key.hashCode()) ^
(val == null ? 0 : val.hashCode());
}
// Not used in this data structure, but these nodes can be returned!
@Override public boolean equals(Object o) {
if (this == o) { return true; }
if ( !(o instanceof Map.Entry) ) { return false; }
Map.Entry that = (Map.Entry) o;
return Objects.equals(key, that.getKey()) &&
Objects.equals(val, that.getValue());
}
@Override public String toString() {
return "BlackBranchVal(" + key + "," + val + ")";
}
}
private static class Red extends Node {
public Red(K key) { super(key); }
@Override Node addLeft(Node ins) { return red(key, val(), ins, right()); }
@Override Node addRight(Node ins) { return red(key, val(), left(), ins); }
@Override Node removeLeft(Node del) { return red(key, val(), del, right()); }
@Override Node removeRight(Node del) { return red(key, val(), left(), del); }
@Override Node blacken() { return new Black<>(key); }
@Override
Node redden() { throw new UnsupportedOperationException("Invariant violation"); }
@Override
Node replace(K key, V val, Node left, Node right) { return red(key, val, left, right); }
}
private static class RedVal extends Red {
final V val;
public RedVal(K key, V val) {
super(key);
this.val = val;
}
@Override public V val() { return val; }
@Override Node blacken() { return new BlackVal<>(key, val); }
// Not used in this data structure, but these nodes can be returned!
@Override public int hashCode() {
// This is specified in java.util.Map as part of the map contract.
return (key == null ? 0 : key.hashCode()) ^
(val == null ? 0 : val.hashCode());
}
// Not used in this data structure, but these nodes can be returned!
@Override public boolean equals(Object o) {
if (this == o) { return true; }
if ( !(o instanceof Map.Entry) ) { return false; }
Map.Entry that = (Map.Entry) o;
return Objects.equals(key, that.getKey()) &&
Objects.equals(val, that.getValue());
}
@Override public String toString() {
return "RedVal(" + key + "," + val + ")";
}
}
private static class RedBranch extends Red {
final Node left;
final Node right;
public RedBranch(K key, Node left, Node right) {
super(key);
this.left = left;
this.right = right;
}
@Override public Node left() { return left; }
@Override public Node right() { return right; }
@Override Node balanceLeft(Node parent) {
if (left instanceof Red)
return red(key, val(), left.blacken(), black(parent.key, parent.val(), right, parent.right()));
else if (right instanceof Red)
return red(right.key, right.val(), black(key, val(), left, right.left()),
black(parent.key, parent.val(), right.right(), parent.right()));
else
return super.balanceLeft(parent);
}
@Override Node balanceRight(Node parent) {
if (right instanceof Red)
return red(key, val(), black(parent.key, parent.val(), parent.left(), left), right.blacken());
else if (left instanceof Red)
return red(left.key, left.val(), black(parent.key, parent.val(), parent.left(), left.left()),
black(key, val(), left.right(), right));
else
return super.balanceRight(parent);
}
@Override Node blacken() { return new BlackBranch<>(key, left, right); }
}
private static class RedBranchVal extends RedBranch {
final V val;
public RedBranchVal(K key, V val, Node left, Node right) {
super(key, left, right);
this.val = val;
}
@Override public V val() { return val; }
@Override Node blacken() { return new BlackBranchVal<>(key, val, left, right); }
// Not used in this data structure, but these nodes can be returned!
@Override public int hashCode() {
// This is specified in java.util.Map as part of the map contract.
return (key == null ? 0 : key.hashCode()) ^
(val == null ? 0 : val.hashCode());
}
// Not used in this data structure, but these nodes can be returned!
@Override public boolean equals(Object o) {
if (this == o) { return true; }
if ( !(o instanceof Map.Entry) ) { return false; }
Map.Entry that = (Map.Entry) o;
return Objects.equals(key, that.getKey()) && Objects.equals(val, that.getValue());
}
@Override public String toString() {
return "RedBranchVal(" + key + "," + val + ")";
}
}
// static public class Iter extends ASeq> {
// final ISeq> stack;
// final boolean asc;
// final int cnt;
//
// public Iter(ISeq> stack, boolean asc) {
// this.stack = stack;
// this.asc = asc;
// this.cnt = -1;
// }
//
// public Iter(ISeq> stack, boolean asc, int cnt) {
// this.stack = stack;
// this.asc = asc;
// this.cnt = cnt;
// }
//
// Iter(ISeq> stack, boolean asc, int cnt) {
// super();
// this.stack = stack;
// this.asc = asc;
// this.cnt = cnt;
// }
//
// static Iter create(Node t, boolean asc, int cnt) {
// return new Iter<>(push(t, null, asc), asc, cnt);
// }
//
// static ISeq> push(Node t, ISeq> stack, boolean asc) {
// while (t != null) {
// stack = RT.cons(t, stack);
// t = asc ? t.left() : t.right();
// }
// return stack;
// }
//
// @Override
// public Node head() {
// return stack.head();
// }
//
// @Override
// public ISeq> next() {
// Node t = stack.head();
// ISeq> nextstack = push(asc ? t.right() : t.left(), stack.next(), asc);
// if (nextstack != null) {
// return new Iter<>(nextstack, asc, cnt - 1);
// }
// return null;
// }
//
// @Override
// public int count() {
// if (cnt < 0)
// return super.count();
// return cnt;
// }
// }
private static class NodeIterator implements UnmodSortedIterator> {
private Stack> stack = new Stack<>();
private final boolean asc;
NodeIterator(Node t, boolean asc) {
this.asc = asc;
push(t);
}
private void push(Node t) {
while (t != null) {
stack.push(t);
t = asc ? t.left() : t.right();
}
}
@Override public boolean hasNext() {
return !stack.isEmpty();
}
@Override public UnmodMap.UnEntry