org.ddogleg.struct.FastArrayList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ddogleg Show documentation
Show all versions of ddogleg Show documentation
DDogleg Numerics is a high performance Java library for non-linear optimization, robust model fitting, polynomial root finding, sorting, and more.
The newest version!
/*
* Copyright (c) 2012-2024, Peter Abeles. All Rights Reserved.
*
* This file is part of DDogleg (http://ddogleg.org).
*
* 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 org.ddogleg.struct;
import java.io.Serializable;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
/**
* Wrapper around {@link FastArray} which allows it to act as a {@link List}.
*
* @author Peter Abeles
*/
public class FastArrayList implements List, Serializable {
FastArray queue;
public FastArrayList( FastArray queue ) {
this.queue = queue;
}
@Override
public int size() {
return queue.size;
}
@Override
public boolean isEmpty() {
return queue.size() == 0;
}
@Override
public boolean contains( Object o ) {
return queue.contains((T)o);
}
@Override
public Iterator iterator() {
return new MyIterator();
}
@Override
public Object[] toArray() {
Object[] ret = new Object[queue.size];
System.arraycopy(queue.data, 0, ret, 0, queue.size);
return ret;
}
@Override
public A[] toArray( A[] a ) {
System.arraycopy(queue.data, 0, a, 0, queue.size);
return a;
}
@Override
public boolean add( T t ) {
queue.add(t);
return true;
}
@Override
public boolean remove( Object o ) {
throw new RuntimeException("Not all list operations are supposed.");
}
@Override
public boolean containsAll( Collection> c ) {
for (Object o : c) {
if (!contains(o))
return false;
}
return true;
}
@Override
public boolean addAll( Collection extends T> c ) {
Iterator iter = (Iterator)c.iterator();
boolean changed = iter.hasNext();
while (iter.hasNext()) {
queue.add(iter.next());
}
return changed;
}
@Override
public boolean addAll( int index, Collection extends T> c ) {
throw new RuntimeException("Not all list operations are supposed.");
}
@Override
public boolean removeAll( Collection> c ) {
throw new RuntimeException("Not all list operations are supposed.");
}
@Override
public boolean retainAll( Collection> c ) {
throw new RuntimeException("Not all list operations are supposed.");
}
@Override
public void clear() {
queue.reset();
}
@Override
public T get( int index ) {
return queue.data[index];
}
@Override
public T set( int index, T element ) {
return queue.data[index] = element;
}
@Override
public void add( int index, T element ) {
throw new RuntimeException("Not all list operations are supposed.");
}
@Override
public T remove( int index ) {
throw new RuntimeException("Not all list operations are supposed.");
}
@Override
public int indexOf( Object o ) {
return queue.indexOf((T)o);
}
@Override
public int lastIndexOf( Object o ) {
for (int i = queue.size - 1; i >= 0; i--) {
if (queue.data[i].equals(o))
return i;
}
return -1;
}
@Override
public ListIterator listIterator() {
return new MyIterator();
}
@Override
public ListIterator listIterator( int index ) {
throw new RuntimeException("Not supported");
}
@Override
public List subList( int fromIndex, int toIndex ) {
throw new RuntimeException("Not supported");
}
public class MyIterator implements ListIterator {
int index = 0;
@Override
public boolean hasNext() {
return index < queue.size;
}
@Override
public T next() {
return queue.data[index++];
}
@Override
public boolean hasPrevious() {
return index > 0;
}
@Override
public T previous() {
return queue.data[--index];
}
@Override
public int nextIndex() {
return index;
}
@Override
public int previousIndex() {
return index - 1;
}
@Override
public void remove() {
throw new RuntimeException("Not all list operations are supposed.");
}
@Override
public void set( T t ) {
queue.data[index - 1] = t;
}
@Override
public void add( T t ) {
queue.add(t);
}
}
}