org.ddogleg.struct.GrowQueue_F64 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.
/*
* Copyright (c) 2012-2013, 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;
/**
* This is a queue that is composed of integers. Elements are added and removed from the tail
*
* @author Peter Abeles
*/
public class GrowQueue_F64 {
public double data[];
public int size;
public GrowQueue_F64( int maxSize ) {
data = new double[ maxSize ];
this.size = 0;
}
public GrowQueue_F64() {
this(10);
}
public void reset() {
size = 0;
}
public void addAll( GrowQueue_F64 queue ) {
if( size+queue.size > data.length ) {
double temp[] = new double[ (size+queue.size) * 2];
System.arraycopy(data,0,temp,0,size);
data = temp;
}
System.arraycopy(queue.data,0,data,size,queue.size);
size += queue.size;
}
public void add( double val ) {
push(val);
}
public void push( double val ) {
if( size == data.length ) {
double temp[];
try {
temp = new double[ size * 2];
} catch( OutOfMemoryError e ) {
System.gc();
// System.out.println("Memory on size "+size+" or "+(size*8/1024/1024)+" MB");
// System.out.println("Trying smaller increment");
temp = new double[ 3*size/2];
}
System.arraycopy(data,0,temp,0,size);
data = temp;
}
data[size++] = val;
}
public void remove( int index ) {
for( int i = index+1; i < size; i++ ) {
data[i-1] = data[i];
}
size--;
}
public double get( int index ) {
return data[index];
}
public void resize( int size ) {
if( data.length < size ) {
data = new double[size];
}
this.size = size;
}
public void setMaxSize( int size ) {
if( data.length < size ) {
data = new double[size];
}
}
public int getSize() {
return size;
}
public double pop() {
return data[--size];
}
}