blob: 3878578e2aa797c8930c0f283ad560d2cdbfb6ac [file] [log] [blame]
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package java.util;
import static javaemul.internal.InternalPreconditions.checkNotNull;
import java.io.Serializable;
/**
* Implements a set using a TreeMap. <a
* href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/TreeSet.html">[Sun
* docs]</a>
*
* @param <E> element type.
*/
public class TreeSet<E> extends AbstractSet<E> implements NavigableSet<E>, Serializable {
/**
* TreeSet is stored as a TreeMap of the requested type to a constant Boolean.
*/
private NavigableMap<E, Boolean> map;
public TreeSet() {
map = new TreeMap<E, Boolean>();
}
public TreeSet(Collection<? extends E> c) {
this();
addAll(c);
}
public TreeSet(Comparator<? super E> c) {
map = new TreeMap<E, Boolean>(c);
}
public TreeSet(SortedSet<E> s) {
this(checkNotNull(s).comparator());
// TODO(jat): more efficient implementation
addAll(s);
}
/**
* Used to wrap subset maps in a new TreeSet.
*
* @param map map to use for backing store
*/
private TreeSet(NavigableMap<E, Boolean> map) {
this.map = map;
}
@Override
public boolean add(E o) {
// Use Boolean.FALSE as a convenient non-null value to store in the map
return map.put(o, Boolean.FALSE) == null;
}
@Override
public E ceiling(E e) {
return map.ceilingKey(e);
}
@Override
public void clear() {
map.clear();
}
@Override
public Comparator<? super E> comparator() {
return map.comparator();
}
@Override
public boolean contains(Object o) {
return map.containsKey(o);
}
@Override
public Iterator<E> descendingIterator() {
return descendingSet().iterator();
}
@Override
public NavigableSet<E> descendingSet() {
return new TreeSet<E>(map.descendingMap());
}
@Override
public E first() {
return map.firstKey();
}
@Override
public E floor(E e) {
return map.floorKey(e);
}
@Override
public SortedSet<E> headSet(E toElement) {
return headSet(toElement, false);
}
@Override
public NavigableSet<E> headSet(E toElement, boolean inclusive) {
return new TreeSet<E>(map.headMap(toElement, inclusive));
}
@Override
public E higher(E e) {
return map.higherKey(e);
}
@Override
public Iterator<E> iterator() {
return map.keySet().iterator();
}
@Override
public E last() {
return map.lastKey();
}
@Override
public E lower(E e) {
return map.lowerKey(e);
}
@Override
public E pollFirst() {
return AbstractMap.getEntryKeyOrNull(map.pollFirstEntry());
}
@Override
public E pollLast() {
return AbstractMap.getEntryKeyOrNull(map.pollLastEntry());
}
@Override
public boolean remove(Object o) {
return map.remove(o) != null;
}
@Override
public int size() {
return map.size();
}
@Override
public NavigableSet<E> subSet(E fromElement, boolean fromInclusive,
E toElement, boolean toInclusive) {
return new TreeSet<E>(map.subMap(fromElement, fromInclusive, toElement, toInclusive));
}
@Override
public SortedSet<E> subSet(E fromElement, E toElement) {
return subSet(fromElement, true, toElement, false);
}
@Override
public SortedSet<E> tailSet(E fromElement) {
return tailSet(fromElement, true);
}
@Override
public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
return new TreeSet<E>(map.tailMap(fromElement, inclusive));
}
}