All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.it.unimi.dsi.fastutil.objects.Object2FloatArrayMap Maven / Gradle / Ivy

The newest version!
/* Generic definitions */
/* Assertions (useful to generate conditional code) */
/* Current type and class (and size, if applicable) */
/* Value methods */
/* Interfaces (keys) */
/* Interfaces (values) */
/* Abstract implementations (keys) */
/* Abstract implementations (values) */
/* Static containers (keys) */
/* Static containers (values) */
/* Implementations */
/* Synchronized wrappers */
/* Unmodifiable wrappers */
/* Other wrappers */
/* Methods (keys) */
/* Methods (values) */
/* Methods (keys/values) */
/* Methods that have special names depending on keys (but the special names depend on values) */
/* Equality */
/* Object/Reference-only definitions (keys) */
/* Object/Reference-only definitions (values) */
/* Primitive-type-only definitions (values) */
/*		 
 * Copyright (C) 2007-2015 Sebastiano Vigna
 *
 * 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 it.unimi.dsi.fastutil.objects;

import java.util.Map;
import java.util.NoSuchElementException;
import it.unimi.dsi.fastutil.objects.AbstractObjectIterator;
import it.unimi.dsi.fastutil.objects.AbstractObjectSet;
import it.unimi.dsi.fastutil.objects.ObjectIterator;
import it.unimi.dsi.fastutil.floats.FloatCollection;
import it.unimi.dsi.fastutil.floats.FloatCollections;
import it.unimi.dsi.fastutil.floats.FloatArraySet;
import it.unimi.dsi.fastutil.floats.FloatArrays;

/** A simple, brute-force implementation of a map based on two parallel backing arrays.
 * 
 * 

The main purpose of this implementation is that of wrapping cleanly the brute-force approach to the storage of a very small number of pairs: just put them into two parallel arrays and scan * linearly to find an item. */ public class Object2FloatArrayMap extends AbstractObject2FloatMap implements java.io.Serializable, Cloneable { private static final long serialVersionUID = 1L; /** The keys (valid up to {@link #size}, excluded). */ private transient Object[] key; /** The values (parallel to {@link #key}). */ private transient float[] value; /** The number of valid entries in {@link #key} and {@link #value}. */ private int size; /** Creates a new empty array map with given key and value backing arrays. The resulting map will have as many entries as the given arrays. * *

It is responsibility of the caller that the elements of key are distinct. * * @param key the key array. * @param value the value array (it must have the same length as key). */ public Object2FloatArrayMap( final Object[] key, final float[] value ) { this.key = key; this.value = value; size = key.length; if ( key.length != value.length ) throw new IllegalArgumentException( "Keys and values have different lengths (" + key.length + ", " + value.length + ")" ); } /** Creates a new empty array map. */ public Object2FloatArrayMap() { this.key = ObjectArrays.EMPTY_ARRAY; this.value = FloatArrays.EMPTY_ARRAY; } /** Creates a new empty array map of given capacity. * * @param capacity the initial capacity. */ public Object2FloatArrayMap( final int capacity ) { this.key = new Object[ capacity ]; this.value = new float[ capacity ]; } /** Creates a new empty array map copying the entries of a given map. * * @param m a map. */ public Object2FloatArrayMap( final Object2FloatMap m ) { this( m.size() ); putAll( m ); } /** Creates a new empty array map copying the entries of a given map. * * @param m a map. */ public Object2FloatArrayMap( final Map m ) { this( m.size() ); putAll( m ); } /** Creates a new array map with given key and value backing arrays, using the given number of elements. * *

It is responsibility of the caller that the first size elements of key are distinct. * * @param key the key array. * @param value the value array (it must have the same length as key). * @param size the number of valid elements in key and value. */ public Object2FloatArrayMap( final Object[] key, final float[] value, final int size ) { this.key = key; this.value = value; this.size = size; if ( key.length != value.length ) throw new IllegalArgumentException( "Keys and values have different lengths (" + key.length + ", " + value.length + ")" ); if ( size > key.length ) throw new IllegalArgumentException( "The provided size (" + size + ") is larger than or equal to the backing-arrays size (" + key.length + ")" ); } private final class EntrySet extends AbstractObjectSet> implements FastEntrySet { @Override public ObjectIterator> iterator() { return new AbstractObjectIterator>() { int next = 0; public boolean hasNext() { return next < size; } @SuppressWarnings("unchecked") public Entry next() { if ( !hasNext() ) throw new NoSuchElementException(); return new AbstractObject2FloatMap.BasicEntry( (K)key[ next ], value[ next++ ] ); } }; } public ObjectIterator> fastIterator() { return new AbstractObjectIterator>() { int next = 0; final BasicEntry entry = new BasicEntry( ( null ), ( 0 ) ); public boolean hasNext() { return next < size; } @SuppressWarnings("unchecked") public Entry next() { if ( !hasNext() ) throw new NoSuchElementException(); entry.key = (K)key[ next ]; entry.value = value[ next++ ]; return entry; } }; } public int size() { return size; } @SuppressWarnings("unchecked") public boolean contains( Object o ) { if ( !( o instanceof Map.Entry ) ) return false; final Map.Entry e = (Map.Entry)o; final K k = ( e.getKey() ); return Object2FloatArrayMap.this.containsKey( k ) && ( ( Object2FloatArrayMap.this.getFloat( k ) ) == ( ( ( e.getValue() ).floatValue() ) ) ); } } public FastEntrySet object2FloatEntrySet() { return new EntrySet(); } private int findKey( final Object k ) { final Object[] key = this.key; for ( int i = size; i-- != 0; ) if ( ( ( key[ i ] ) == null ? ( k ) == null : ( key[ i ] ).equals( k ) ) ) return i; return -1; } public float getFloat( final Object k ) { final Object[] key = this.key; for ( int i = size; i-- != 0; ) if ( ( ( key[ i ] ) == null ? ( k ) == null : ( key[ i ] ).equals( k ) ) ) return value[ i ]; return defRetValue; } public int size() { return size; } @Override public void clear() { for ( int i = size; i-- != 0; ) { key[ i ] = null; } size = 0; } @Override public boolean containsKey( final Object k ) { return findKey( k ) != -1; } @Override public boolean containsValue( float v ) { for ( int i = size; i-- != 0; ) if ( ( ( value[ i ] ) == ( v ) ) ) return true; return false; } @Override public boolean isEmpty() { return size == 0; } @Override public float put( K k, float v ) { final int oldKey = findKey( k ); if ( oldKey != -1 ) { final float oldValue = value[ oldKey ]; value[ oldKey ] = v; return oldValue; } if ( size == key.length ) { final Object[] newKey = new Object[ size == 0 ? 2 : size * 2 ]; final float[] newValue = new float[ size == 0 ? 2 : size * 2 ]; for ( int i = size; i-- != 0; ) { newKey[ i ] = key[ i ]; newValue[ i ] = value[ i ]; } key = newKey; value = newValue; } key[ size ] = k; value[ size ] = v; size++; return defRetValue; } @Override public float removeFloat( final Object k ) { final int oldPos = findKey( k ); if ( oldPos == -1 ) return defRetValue; final float oldValue = value[ oldPos ]; final int tail = size - oldPos - 1; for ( int i = 0; i < tail; i++ ) { key[ oldPos + i ] = key[ oldPos + i + 1 ]; value[ oldPos + i ] = value[ oldPos + i + 1 ]; } size--; key[ size ] = null; return oldValue; } @Override public ObjectSet keySet() { return new ObjectArraySet( key, size ); } @Override public FloatCollection values() { return FloatCollections.unmodifiable( new FloatArraySet( value, size ) ); } /** Returns a deep copy of this map. * *

This method performs a deep copy of this hash map; the data stored in the map, however, is not cloned. Note that this makes a difference only for object keys. * * @return a deep copy of this map. */ @SuppressWarnings("unchecked") public Object2FloatArrayMap clone() { Object2FloatArrayMap c; try { c = (Object2FloatArrayMap)super.clone(); } catch ( CloneNotSupportedException cantHappen ) { throw new InternalError(); } c.key = key.clone(); c.value = value.clone(); return c; } private void writeObject( java.io.ObjectOutputStream s ) throws java.io.IOException { s.defaultWriteObject(); for ( int i = 0; i < size; i++ ) { s.writeObject( key[ i ] ); s.writeFloat( value[ i ] ); } } private void readObject( java.io.ObjectInputStream s ) throws java.io.IOException, ClassNotFoundException { s.defaultReadObject(); key = new Object[ size ]; value = new float[ size ]; for ( int i = 0; i < size; i++ ) { key[ i ] = s.readObject(); value[ i ] = s.readFloat(); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy