/** * 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. */ /* Copyright � 1999 CERN - European Organization for Nuclear Research. Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. CERN makes no representations about the suitability of this software for any purpose. It is provided "as is" without expressed or implied warranty. */ /* Copyright 1999 CERN - European Organization for Nuclear Research. Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. CERN makes no representations about the suitability of this software for any purpose. It is provided "as is" without expressed or implied warranty. */ package org.apache.mahout.math.list; import org.apache.mahout.math.PersistentObject; /** * Abstract base class for resizable lists holding objects or primitive data types such as * {@code int}, {@code float}, etc. * First see the <a href="package-summary.html">package summary</a> and javadoc * <a href="package-tree.html">tree view</a> to get the broad picture. * <p> * <b>Note that this implementation is not synchronized.</b> * * @author wolfgang.hoschek@cern.ch * @version 1.0, 09/24/99 * @see java.util.ArrayList * @see java.util.Vector * @see java.util.Arrays */ public abstract class AbstractList extends PersistentObject { public abstract int size(); public boolean isEmpty() { return size() == 0; } /** * Inserts <tt>length</tt> dummy elements before the specified position into the receiver. Shifts the element * currently at that position (if any) and any subsequent elements to the right. <b>This method must set the new size * to be <tt>size()+length</tt>. * * @param index index before which to insert dummy elements (must be in [0,size]).. * @param length number of dummy elements to be inserted. * @throws IndexOutOfBoundsException if <tt>index < 0 || index > size()</tt>. */ protected abstract void beforeInsertDummies(int index, int length); /** Checks if the given index is in range. */ protected static void checkRange(int index, int theSize) { if (index >= theSize || index < 0) { throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + theSize); } } /** * Checks if the given range is within the contained array's bounds. * * @throws IndexOutOfBoundsException if <tt>to!=from-1 || from<0 || from>to || to>=size()</tt>. */ protected static void checkRangeFromTo(int from, int to, int theSize) { if (to == from - 1) { return; } if (from < 0 || from > to || to >= theSize) { throw new IndexOutOfBoundsException("from: " + from + ", to: " + to + ", size=" + theSize); } } /** * Removes all elements from the receiver. The receiver will be empty after this call returns, but keep its current * capacity. */ public void clear() { removeFromTo(0, size() - 1); } /** * Sorts the receiver into ascending order. This sort is guaranteed to be <i>stable</i>: equal elements will not be * reordered as a result of the sort.<p> * * The sorting algorithm is a modified mergesort (in which the merge is omitted if the highest element in the low * sublist is less than the lowest element in the high sublist). This algorithm offers guaranteed n*log(n) * performance, and can approach linear performance on nearly sorted lists. * * <p><b>You should never call this method unless you are sure that this particular sorting algorithm is the right one * for your data set.</b> It is generally better to call <tt>sort()</tt> or <tt>sortFromTo(...)</tt> instead, because * those methods automatically choose the best sorting algorithm. */ public final void mergeSort() { mergeSortFromTo(0, size() - 1); } /** * Sorts the receiver into ascending order. This sort is guaranteed to be <i>stable</i>: equal elements will not be * reordered as a result of the sort.<p> * * The sorting algorithm is a modified mergesort (in which the merge is omitted if the highest element in the low * sublist is less than the lowest element in the high sublist). This algorithm offers guaranteed n*log(n) * performance, and can approach linear performance on nearly sorted lists. * * <p><b>You should never call this method unless you are sure that this particular sorting algorithm is the right one * for your data set.</b> It is generally better to call <tt>sort()</tt> or <tt>sortFromTo(...)</tt> instead, because * those methods automatically choose the best sorting algorithm. * * @param from the index of the first element (inclusive) to be sorted. * @param to the index of the last element (inclusive) to be sorted. * @throws IndexOutOfBoundsException if <tt>(from<0 || from>to || to>=size()) && to!=from-1</tt>. */ public abstract void mergeSortFromTo(int from, int to); /** * Sorts the receiver into ascending order. The sorting algorithm is a tuned quicksort, adapted from Jon L. Bentley * and M. Douglas McIlroy's "Engineering a Sort Function", Software-Practice and Experience, Vol. 23(11) P. 1249-1265 * (November 1993). This algorithm offers n*log(n) performance on many data sets that cause other quicksorts to * degrade to quadratic performance. * * <p><b>You should never call this method unless you are sure that this particular sorting algorithm is the right one * for your data set.</b> It is generally better to call <tt>sort()</tt> or <tt>sortFromTo(...)</tt> instead, because * those methods automatically choose the best sorting algorithm. */ public final void quickSort() { quickSortFromTo(0, size() - 1); } /** * Sorts the specified range of the receiver into ascending order. The sorting algorithm is a tuned quicksort, * adapted from Jon L. Bentley and M. Douglas McIlroy's "Engineering a Sort Function", Software-Practice and * Experience, Vol. 23(11) P. 1249-1265 (November 1993). This algorithm offers n*log(n) performance on many data sets * that cause other quicksorts to degrade to quadratic performance. * * <p><b>You should never call this method unless you are sure that this particular sorting algorithm is the right one * for your data set.</b> It is generally better to call <tt>sort()</tt> or <tt>sortFromTo(...)</tt> instead, because * those methods automatically choose the best sorting algorithm. * * @param from the index of the first element (inclusive) to be sorted. * @param to the index of the last element (inclusive) to be sorted. * @throws IndexOutOfBoundsException if <tt>(from<0 || from>to || to>=size()) && to!=from-1</tt>. */ public abstract void quickSortFromTo(int from, int to); /** * Removes the element at the specified position from the receiver. Shifts any subsequent elements to the left. * * @param index the index of the element to removed. * @throws IndexOutOfBoundsException if <tt>index < 0 || index >= size()</tt>. */ public void remove(int index) { removeFromTo(index, index); } /** * Removes from the receiver all elements whose index is between <code>from</code>, inclusive and <code>to</code>, * inclusive. Shifts any succeeding elements to the left (reduces their index). This call shortens the list by * <tt>(to - from + 1)</tt> elements. * * @param fromIndex index of first element to be removed. * @param toIndex index of last element to be removed. * @throws IndexOutOfBoundsException if <tt>(from<0 || from>to || to>=size()) && to!=from-1</tt>. */ public abstract void removeFromTo(int fromIndex, int toIndex); /** Reverses the elements of the receiver. Last becomes first, second last becomes second first, and so on. */ public abstract void reverse(); /** * Sets the size of the receiver. If the new size is greater than the current size, new null or zero items are added * to the end of the receiver. If the new size is less than the current size, all components at index newSize and * greater are discarded. This method does not release any superfluos internal memory. Use method <tt>trimToSize</tt> * to release superfluos internal memory. * * @param newSize the new size of the receiver. * @throws IndexOutOfBoundsException if <tt>newSize < 0</tt>. */ public void setSize(int newSize) { if (newSize < 0) { throw new IndexOutOfBoundsException("newSize:" + newSize); } int currentSize = size(); if (newSize != currentSize) { if (newSize > currentSize) { beforeInsertDummies(currentSize, newSize - currentSize); } else if (newSize < currentSize) { removeFromTo(newSize, currentSize - 1); } } } /** * Sorts the receiver into ascending order. * * The sorting algorithm is dynamically chosen according to the characteristics of the data set. * * This implementation simply calls <tt>sortFromTo(...)</tt>. Override <tt>sortFromTo(...)</tt> if you can determine * which sort is most appropriate for the given data set. */ public final void sort() { sortFromTo(0, size() - 1); } /** * Sorts the specified range of the receiver into ascending order. * * The sorting algorithm is dynamically chosen according to the characteristics of the data set. This default * implementation simply calls quickSort. Override this method if you can determine which sort is most appropriate for * the given data set. * * @param from the index of the first element (inclusive) to be sorted. * @param to the index of the last element (inclusive) to be sorted. * @throws IndexOutOfBoundsException if <tt>(from<0 || from>to || to>=size()) && to!=from-1</tt>. */ public void sortFromTo(int from, int to) { quickSortFromTo(from, to); } /** * Trims the capacity of the receiver to be the receiver's current size. Releases any superfluos internal memory. An * application can use this operation to minimize the storage of the receiver. <p> This default implementation does * nothing. Override this method in space efficient implementations. */ public void trimToSize() { } }