org.apache.mahout.math.set.AbstractLongSet Maven / Gradle / Ivy
Show all versions of mahout-math Show documentation
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.mahout.math.set;
import org.apache.mahout.math.function.LongProcedure;
import org.apache.mahout.math.list.LongArrayList;
import java.util.Arrays;
import java.nio.IntBuffer;
public abstract class AbstractLongSet extends AbstractSet {
/**
* Returns true if the receiver contains the specified key.
*
* @return true if the receiver contains the specified key.
*/
public boolean contains(final long key) {
return !forEachKey(
new LongProcedure() {
@Override
public boolean apply(long iterKey) {
return (key != iterKey);
}
}
);
}
/**
* Returns a deep copy of the receiver; uses clone()
and casts the result.
*
* @return a deep copy of the receiver.
*/
public AbstractLongSet copy() {
return (AbstractLongSet) clone();
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof AbstractLongSet)) {
return false;
}
final AbstractLongSet other = (AbstractLongSet) obj;
if (other.size() != size()) {
return false;
}
return
forEachKey(
new LongProcedure() {
@Override
public boolean apply(long key) {
return other.contains(key);
}
}
);
}
public int hashCode() {
final int[] buf = new int[size()];
forEachKey(
new LongProcedure() {
int i = 0;
@Override
public boolean apply(long iterKey) {
buf[i++] = HashUtils.hash(iterKey);
return true;
}
}
);
Arrays.sort(buf);
return IntBuffer.wrap(buf).hashCode();
}
/**
* Applies a procedure to each key of the receiver, if any. Note: Iterates over the keys in no particular order.
* Subclasses can define a particular order, for example, "sorted by key". All methods which can be expressed
* in terms of this method (most methods can) must guarantee to use the same order defined by this
* method, even if it is no particular order. This is necessary so that, for example, methods keys and
* values will yield association pairs, not two uncorrelated lists.
*
* @param procedure the procedure to be applied. Stops iteration if the procedure returns false, otherwise
* continues.
* @return false if the procedure stopped before all keys where iterated over, true otherwise.
*/
public abstract boolean forEachKey(LongProcedure procedure);
/**
* Returns a list filled with all keys contained in the receiver. The returned list has a size that equals
* this.size(). Iteration order is guaranteed to be identical to the order used by method {@link
* #forEachKey(LongProcedure)}. This method can be used to iterate over the keys of the receiver.
*
* @return the keys.
*/
public LongArrayList keys() {
LongArrayList list = new LongArrayList(size());
keys(list);
return list;
}
/**
* Fills all keys contained in the receiver into the specified list. Fills the list, starting at index 0. After this
* call returns the specified list has a new size that equals this.size(). Iteration order is guaranteed to
* be identical to the order used by method {@link #forEachKey(LongProcedure)}.
*
This method can be used to
* iterate over the keys of the receiver.
*
* @param list the list to be filled, can have any size.
*/
public void keys(final LongArrayList list) {
list.clear();
forEachKey(
new LongProcedure() {
@Override
public boolean apply(long key) {
list.add(key);
return true;
}
}
);
}
/**
* Associates the given key with the given value. Replaces any old (key,someOtherValue) association, if
* existing.
*
* @param key the key the value shall be associated with.
* @return true if the receiver did not already contain such a key; false if the receiver did
* already contain such a key - the new value has now replaced the formerly associated value.
*/
public abstract boolean add(long key);
/**
* Removes the given key with its associated element from the receiver, if present.
*
* @param key the key to be removed from the receiver.
* @return true if the receiver contained the specified key, false otherwise.
*/
public abstract boolean remove(long key);
/**
* Returns a string representation of the receiver, containing the String representation of each key-value pair,
* sorted ascending by key.
*/
public String toString() {
LongArrayList theKeys = keys();
//theKeys.sort();
StringBuilder buf = new StringBuilder();
buf.append('[');
int maxIndex = theKeys.size() - 1;
for (int i = 0; i <= maxIndex; i++) {
long key = theKeys.get(i);
buf.append(String.valueOf(key));
if (i < maxIndex) {
buf.append(", ");
}
}
buf.append(']');
return buf.toString();
}
}