/*
	* Copyright (C) 2002-2019 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.longs;
import java.util.Arrays;
import java.util.Collection;
import java.util.Iterator;
import java.util.RandomAccess;
import java.util.NoSuchElementException;
A type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.

This class implements a lightweight, fast, open, optimized, reuse-oriented version of array-based lists. Instances of this class represent a list with an array that is enlarged as needed when new entries are created (by doubling its current length), but is never made smaller (even on a clear()). A family of trimming methods lets you control the size of the backing array; this is particularly useful if you reuse instances of this class. Range checks are equivalent to those of util's classes, but they are delayed as much as possible. The backing array is exposed by the elements() method.

This class implements the bulk methods removeElements(), addElements() and getElements() using high-performance system calls (e.g., System.arraycopy() instead of expensive loops.

See Also:
/** * A type-specific array-based list; provides some additional methods that use * polymorphism to avoid (un)boxing. * * <p> * This class implements a lightweight, fast, open, optimized, reuse-oriented * version of array-based lists. Instances of this class represent a list with * an array that is enlarged as needed when new entries are created (by doubling * its current length), but is <em>never</em> made smaller (even on a * {@link #clear()}). A family of {@linkplain #trim() trimming methods} lets you * control the size of the backing array; this is particularly useful if you * reuse instances of this class. Range checks are equivalent to those of * {@link java.util}'s classes, but they are delayed as much as possible. The * backing array is exposed by the {@link #elements()} method. * * <p> * This class implements the bulk methods {@code removeElements()}, * {@code addElements()} and {@code getElements()} using high-performance system * calls (e.g., {@link System#arraycopy(Object,int,Object,int,int) * System.arraycopy()} instead of expensive loops. * * @see java.util.ArrayList */
public class LongArrayList extends AbstractLongList implements RandomAccess, Cloneable, java.io.Serializable { private static final long serialVersionUID = -7046029254386353130L;
The initial default capacity of an array list.
/** The initial default capacity of an array list. */
public static final int DEFAULT_INITIAL_CAPACITY = 10;
The backing array.
/** The backing array. */
protected transient long a[];
The current actual size of the list (never greater than the backing-array length).
/** * The current actual size of the list (never greater than the backing-array * length). */
protected int size;
Creates a new array list using a given array.

This constructor is only meant to be used by the wrapping methods.

Params:
  • a – the array that will be used to back this array list.
/** * Creates a new array list using a given array. * * <p> * This constructor is only meant to be used by the wrapping methods. * * @param a * the array that will be used to back this array list. */
protected LongArrayList(final long a[], @SuppressWarnings("unused") boolean dummy) { this.a = a; }
Creates a new array list with given capacity.
Params:
  • capacity – the initial capacity of the array list (may be 0).
/** * Creates a new array list with given capacity. * * @param capacity * the initial capacity of the array list (may be 0). */
public LongArrayList(final int capacity) { if (capacity < 0) throw new IllegalArgumentException("Initial capacity (" + capacity + ") is negative"); if (capacity == 0) a = LongArrays.EMPTY_ARRAY; else a = new long[capacity]; }
Creates a new array list with DEFAULT_INITIAL_CAPACITY capacity.
/** Creates a new array list with {@link #DEFAULT_INITIAL_CAPACITY} capacity. */
public LongArrayList() { a = LongArrays.DEFAULT_EMPTY_ARRAY; // We delay allocation }
Creates a new array list and fills it with a given collection.
Params:
  • c – a collection that will be used to fill the array list.
/** * Creates a new array list and fills it with a given collection. * * @param c * a collection that will be used to fill the array list. */
public LongArrayList(final Collection<? extends Long> c) { this(c.size()); size = LongIterators.unwrap(LongIterators.asLongIterator(c.iterator()), a); }
Creates a new array list and fills it with a given type-specific collection.
Params:
  • c – a type-specific collection that will be used to fill the array list.
/** * Creates a new array list and fills it with a given type-specific collection. * * @param c * a type-specific collection that will be used to fill the array * list. */
public LongArrayList(final LongCollection c) { this(c.size()); size = LongIterators.unwrap(c.iterator(), a); }
Creates a new array list and fills it with a given type-specific list.
Params:
  • l – a type-specific list that will be used to fill the array list.
/** * Creates a new array list and fills it with a given type-specific list. * * @param l * a type-specific list that will be used to fill the array list. */
public LongArrayList(final LongList l) { this(l.size()); l.getElements(0, a, 0, size = l.size()); }
Creates a new array list and fills it with the elements of a given array.
Params:
  • a – an array whose elements will be used to fill the array list.
/** * Creates a new array list and fills it with the elements of a given array. * * @param a * an array whose elements will be used to fill the array list. */
public LongArrayList(final long a[]) { this(a, 0, a.length); }
Creates a new array list and fills it with the elements of a given array.
Params:
  • a – an array whose elements will be used to fill the array list.
  • offset – the first element to use.
  • length – the number of elements to use.
/** * Creates a new array list and fills it with the elements of a given array. * * @param a * an array whose elements will be used to fill the array list. * @param offset * the first element to use. * @param length * the number of elements to use. */
public LongArrayList(final long a[], final int offset, final int length) { this(length); System.arraycopy(a, offset, this.a, 0, length); size = length; }
Creates a new array list and fills it with the elements returned by an iterator..
Params:
  • i – an iterator whose returned elements will fill the array list.
/** * Creates a new array list and fills it with the elements returned by an * iterator.. * * @param i * an iterator whose returned elements will fill the array list. */
public LongArrayList(final Iterator<? extends Long> i) { this(); while (i.hasNext()) this.add((i.next()).longValue()); }
Creates a new array list and fills it with the elements returned by a type-specific iterator..
Params:
  • i – a type-specific iterator whose returned elements will fill the array list.
/** * Creates a new array list and fills it with the elements returned by a * type-specific iterator.. * * @param i * a type-specific iterator whose returned elements will fill the * array list. */
public LongArrayList(final LongIterator i) { this(); while (i.hasNext()) this.add(i.nextLong()); }
Returns the backing array of this list.
Returns:the backing array.
/** * Returns the backing array of this list. * * @return the backing array. */
public long[] elements() { return a; }
Wraps a given array into an array list of given size.

Note it is guaranteed that the type of the array returned by elements() will be the same (see the comments in the class documentation).

Params:
  • a – an array to wrap.
  • length – the length of the resulting array list.
Returns:a new array list of the given size, wrapping the given array.
/** * Wraps a given array into an array list of given size. * * <p> * Note it is guaranteed that the type of the array returned by * {@link #elements()} will be the same (see the comments in the class * documentation). * * @param a * an array to wrap. * @param length * the length of the resulting array list. * @return a new array list of the given size, wrapping the given array. */
public static LongArrayList wrap(final long a[], final int length) { if (length > a.length) throw new IllegalArgumentException( "The specified length (" + length + ") is greater than the array size (" + a.length + ")"); final LongArrayList l = new LongArrayList(a, false); l.size = length; return l; }
Wraps a given array into an array list.

Note it is guaranteed that the type of the array returned by elements() will be the same (see the comments in the class documentation).

Params:
  • a – an array to wrap.
Returns:a new array list wrapping the given array.
/** * Wraps a given array into an array list. * * <p> * Note it is guaranteed that the type of the array returned by * {@link #elements()} will be the same (see the comments in the class * documentation). * * @param a * an array to wrap. * @return a new array list wrapping the given array. */
public static LongArrayList wrap(final long a[]) { return wrap(a, a.length); }
Ensures that this array list can contain the given number of entries without resizing.
Params:
  • capacity – the new minimum capacity for this array list.
/** * Ensures that this array list can contain the given number of entries without * resizing. * * @param capacity * the new minimum capacity for this array list. */
public void ensureCapacity(final int capacity) { if (capacity <= a.length || (a == LongArrays.DEFAULT_EMPTY_ARRAY && capacity <= DEFAULT_INITIAL_CAPACITY)) return; a = LongArrays.ensureCapacity(a, capacity, size); assert size <= a.length; }
Grows this array list, ensuring that it can contain the given number of entries without resizing, and in case increasing the current capacity at least by a factor of 50%.
Params:
  • capacity – the new minimum capacity for this array list.
/** * Grows this array list, ensuring that it can contain the given number of * entries without resizing, and in case increasing the current capacity at * least by a factor of 50%. * * @param capacity * the new minimum capacity for this array list. */
private void grow(int capacity) { if (capacity <= a.length) return; if (a != LongArrays.DEFAULT_EMPTY_ARRAY) capacity = (int) Math.max( Math.min((long) a.length + (a.length >> 1), it.unimi.dsi.fastutil.Arrays.MAX_ARRAY_SIZE), capacity); else if (capacity < DEFAULT_INITIAL_CAPACITY) capacity = DEFAULT_INITIAL_CAPACITY; a = LongArrays.forceCapacity(a, capacity, size); assert size <= a.length; } @Override public void add(final int index, final long k) { ensureIndex(index); grow(size + 1); if (index != size) System.arraycopy(a, index, a, index + 1, size - index); a[index] = k; size++; assert size <= a.length; } @Override public boolean add(final long k) { grow(size + 1); a[size++] = k; assert size <= a.length; return true; } @Override public long getLong(final int index) { if (index >= size) throw new IndexOutOfBoundsException( "Index (" + index + ") is greater than or equal to list size (" + size + ")"); return a[index]; } @Override public int indexOf(final long k) { for (int i = 0; i < size; i++) if (((k) == (a[i]))) return i; return -1; } @Override public int lastIndexOf(final long k) { for (int i = size; i-- != 0;) if (((k) == (a[i]))) return i; return -1; } @Override public long removeLong(final int index) { if (index >= size) throw new IndexOutOfBoundsException( "Index (" + index + ") is greater than or equal to list size (" + size + ")"); final long old = a[index]; size--; if (index != size) System.arraycopy(a, index + 1, a, index, size - index); assert size <= a.length; return old; } @Override public boolean rem(final long k) { int index = indexOf(k); if (index == -1) return false; removeLong(index); assert size <= a.length; return true; } @Override public long set(final int index, final long k) { if (index >= size) throw new IndexOutOfBoundsException( "Index (" + index + ") is greater than or equal to list size (" + size + ")"); long old = a[index]; a[index] = k; return old; } @Override public void clear() { size = 0; assert size <= a.length; } @Override public int size() { return size; } @Override public void size(final int size) { if (size > a.length) a = LongArrays.forceCapacity(a, size, this.size); if (size > this.size) Arrays.fill(a, this.size, size, (0)); this.size = size; } @Override public boolean isEmpty() { return size == 0; }
Trims this array list so that the capacity is equal to the size.
See Also:
  • trimToSize.trimToSize()
/** * Trims this array list so that the capacity is equal to the size. * * @see java.util.ArrayList#trimToSize() */
public void trim() { trim(0); }
Trims the backing array if it is too large. If the current array length is smaller than or equal to n, this method does nothing. Otherwise, it trims the array length to the maximum between n and size().

This method is useful when reusing lists. Clearing a list leaves the array length untouched. If you are reusing a list many times, you can call this method with a typical size to avoid keeping around a very large array just because of a few large transient lists.

Params:
  • n – the threshold for the trimming.
/** * Trims the backing array if it is too large. * * If the current array length is smaller than or equal to {@code n}, this * method does nothing. Otherwise, it trims the array length to the maximum * between {@code n} and {@link #size()}. * * <p> * This method is useful when reusing lists. {@linkplain #clear() Clearing a * list} leaves the array length untouched. If you are reusing a list many * times, you can call this method with a typical size to avoid keeping around a * very large array just because of a few large transient lists. * * @param n * the threshold for the trimming. */
public void trim(final int n) { // TODO: use Arrays.trim() and preserve type only if necessary if (n >= a.length || size == a.length) return; final long t[] = new long[Math.max(n, size)]; System.arraycopy(a, 0, t, 0, size); a = t; assert size <= a.length; }
Copies element of this type-specific list into the given array using optimized system calls.
Params:
  • from – the start index (inclusive).
  • a – the destination array.
  • offset – the offset into the destination array where to store the first element copied.
  • length – the number of elements to be copied.
/** * Copies element of this type-specific list into the given array using * optimized system calls. * * @param from * the start index (inclusive). * @param a * the destination array. * @param offset * the offset into the destination array where to store the first * element copied. * @param length * the number of elements to be copied. */
@Override public void getElements(final int from, final long[] a, final int offset, final int length) { LongArrays.ensureOffsetLength(a, offset, length); System.arraycopy(this.a, from, a, offset, length); }
Removes elements of this type-specific list using optimized system calls.
Params:
  • from – the start index (inclusive).
  • to – the end index (exclusive).
/** * Removes elements of this type-specific list using optimized system calls. * * @param from * the start index (inclusive). * @param to * the end index (exclusive). */
@Override public void removeElements(final int from, final int to) { it.unimi.dsi.fastutil.Arrays.ensureFromTo(size, from, to); System.arraycopy(a, to, a, from, size - to); size -= (to - from); }
Adds elements to this type-specific list using optimized system calls.
Params:
  • index – the index at which to add elements.
  • a – the array containing the elements.
  • offset – the offset of the first element to add.
  • length – the number of elements to add.
/** * Adds elements to this type-specific list using optimized system calls. * * @param index * the index at which to add elements. * @param a * the array containing the elements. * @param offset * the offset of the first element to add. * @param length * the number of elements to add. */
@Override public void addElements(final int index, final long a[], final int offset, final int length) { ensureIndex(index); LongArrays.ensureOffsetLength(a, offset, length); grow(size + length); System.arraycopy(this.a, index, this.a, index + length, size - index); System.arraycopy(a, offset, this.a, index, length); size += length; }
Sets elements to this type-specific list using optimized system calls.
Params:
  • index – the index at which to start setting elements.
  • a – the array containing the elements.
  • offset – the offset of the first element to add.
  • length – the number of elements to add.
/** * Sets elements to this type-specific list using optimized system calls. * * @param index * the index at which to start setting elements. * @param a * the array containing the elements. * @param offset * the offset of the first element to add. * @param length * the number of elements to add. */
@Override public void setElements(final int index, final long a[], final int offset, final int length) { ensureIndex(index); LongArrays.ensureOffsetLength(a, offset, length); if (index + length > size) throw new IndexOutOfBoundsException( "End index (" + (index + length) + ") is greater than list size (" + size + ")"); System.arraycopy(a, offset, this.a, index, length); } @Override public long[] toArray(long a[]) { if (a == null || a.length < size) a = new long[size]; System.arraycopy(this.a, 0, a, 0, size); return a; } @Override public boolean addAll(int index, final LongCollection c) { ensureIndex(index); int n = c.size(); if (n == 0) return false; grow(size + n); if (index != size) System.arraycopy(a, index, a, index + n, size - index); final LongIterator i = c.iterator(); size += n; while (n-- != 0) a[index++] = i.nextLong(); assert size <= a.length; return true; } @Override public boolean addAll(final int index, final LongList l) { ensureIndex(index); final int n = l.size(); if (n == 0) return false; grow(size + n); if (index != size) System.arraycopy(a, index, a, index + n, size - index); l.getElements(0, a, index, n); size += n; assert size <= a.length; return true; } @Override public boolean removeAll(final LongCollection c) { final long[] a = this.a; int j = 0; for (int i = 0; i < size; i++) if (!c.contains(a[i])) a[j++] = a[i]; final boolean modified = size != j; size = j; return modified; } @Override public boolean removeAll(final Collection<?> c) { final long[] a = this.a; int j = 0; for (int i = 0; i < size; i++) if (!c.contains(Long.valueOf(a[i]))) a[j++] = a[i]; final boolean modified = size != j; size = j; return modified; } @Override public LongListIterator listIterator(final int index) { ensureIndex(index); return new LongListIterator() { int pos = index, last = -1; @Override public boolean hasNext() { return pos < size; } @Override public boolean hasPrevious() { return pos > 0; } @Override public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); return a[last = pos++]; } @Override public long previousLong() { if (!hasPrevious()) throw new NoSuchElementException(); return a[last = --pos]; } @Override public int nextIndex() { return pos; } @Override public int previousIndex() { return pos - 1; } @Override public void add(long k) { LongArrayList.this.add(pos++, k); last = -1; } @Override public void set(long k) { if (last == -1) throw new IllegalStateException(); LongArrayList.this.set(last, k); } @Override public void remove() { if (last == -1) throw new IllegalStateException(); LongArrayList.this.removeLong(last); /* * If the last operation was a next(), we are removing an element *before* us, * and we must decrease pos correspondingly. */ if (last < pos) pos--; last = -1; } }; } @Override public void sort(final LongComparator comp) { if (comp == null) { LongArrays.stableSort(a, 0, size); } else { LongArrays.stableSort(a, 0, size, comp); } } @Override public void unstableSort(final LongComparator comp) { if (comp == null) { LongArrays.unstableSort(a, 0, size); } else { LongArrays.unstableSort(a, 0, size, comp); } } @Override public LongArrayList clone() { LongArrayList c = new LongArrayList(size); System.arraycopy(a, 0, c.a, 0, size); c.size = size; return c; }
Compares this type-specific array list to another one.

This method exists only for sake of efficiency. The implementation inherited from the abstract implementation would already work.

Params:
  • l – a type-specific array list.
Returns:true if the argument contains the same elements of this type-specific array list.
/** * Compares this type-specific array list to another one. * * <p> * This method exists only for sake of efficiency. The implementation inherited * from the abstract implementation would already work. * * @param l * a type-specific array list. * @return true if the argument contains the same elements of this type-specific * array list. */
public boolean equals(final LongArrayList l) { if (l == this) return true; int s = size(); if (s != l.size()) return false; final long[] a1 = a; final long[] a2 = l.a; while (s-- != 0) if (a1[s] != a2[s]) return false; return true; }
Compares this array list to another array list.

This method exists only for sake of efficiency. The implementation inherited from the abstract implementation would already work.

Params:
  • l – an array list.
Returns:a negative integer, zero, or a positive integer as this list is lexicographically less than, equal to, or greater than the argument.
/** * Compares this array list to another array list. * * <p> * This method exists only for sake of efficiency. The implementation inherited * from the abstract implementation would already work. * * @param l * an array list. * @return a negative integer, zero, or a positive integer as this list is * lexicographically less than, equal to, or greater than the argument. */
public int compareTo(final LongArrayList l) { final int s1 = size(), s2 = l.size(); final long a1[] = a, a2[] = l.a; long e1, e2; int r, i; for (i = 0; i < s1 && i < s2; i++) { e1 = a1[i]; e2 = a2[i]; if ((r = (Long.compare((e1), (e2)))) != 0) return r; } return i < s2 ? -1 : (i < s1 ? 1 : 0); } private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException { s.defaultWriteObject(); for (int i = 0; i < size; i++) s.writeLong(a[i]); } private void readObject(java.io.ObjectInputStream s) throws java.io.IOException, ClassNotFoundException { s.defaultReadObject(); a = new long[size]; for (int i = 0; i < size; i++) a[i] = s.readLong(); } }