00001 package ca.mcgill.sable.util; 00002 00003 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 00004 * SableUtil, a clean room implementation of the Collection API. * 00005 * Copyright (C) 1997, 1998 Raja Vallee-Rai (kor@sable.mcgill.ca). * 00006 * All rights reserved. * 00007 * * 00008 * This work was done as a project of the Sable Research Group, * 00009 * School of Computer Science, McGill University, Canada * 00010 * (http://www.sable.mcgill.ca/). It is understood that any * 00011 * modification not identified as such is not covered by the * 00012 * preceding statement. * 00013 * * 00014 * This work is free software; you can redistribute it and/or * 00015 * modify it under the terms of the GNU Library General Public * 00016 * License as published by the Free Software Foundation; either * 00017 * version 2 of the License, or (at your option) any later version. * 00018 * * 00019 * This work is distributed in the hope that it will be useful, * 00020 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 00022 * Library General Public License for more details. * 00023 * * 00024 * You should have received a copy of the GNU Library General Public * 00025 * License along with this library; if not, write to the * 00026 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * 00027 * Boston, MA 02111-1307, USA. * 00028 * * 00029 * To submit a bug report, send a comment, or get the latest news on * 00030 * this project and other Sable Research Group projects, please * 00031 * visit the web site: http://www.sable.mcgill.ca/ * 00032 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 00033 00034 /* 00035 Reference Version 00036 ----------------- 00037 This is the latest official version on which this file is based. 00038 The reference version is: $SableUtilVersion: 1.11 $ 00039 00040 Change History 00041 -------------- 00042 A) Notes: 00043 00044 Please use the following template. Most recent changes should 00045 appear at the top of the list. 00046 00047 - Modified on [date (March 1, 1900)] by [name]. [(*) if appropriate] 00048 [description of modification]. 00049 00050 Any Modification flagged with "(*)" was done as a project of the 00051 Sable Research Group, School of Computer Science, 00052 McGill University, Canada (http://www.sable.mcgill.ca/). 00053 00054 You should add your copyright, using the following template, at 00055 the top of this file, along with other copyrights. 00056 00057 * * 00058 * Modifications by [name] are * 00059 * Copyright (C) [year(s)] [your name (or company)]. All rights * 00060 * reserved. * 00061 * * 00062 00063 B) Changes: 00064 00065 - Modified on June 15, 1998 by Raja Vallee-Rai (kor@sable.mcgill.ca). (*) 00066 First release of this file. 00067 */ 00068 00069 public class Array 00070 { 00071 private static final int DEFAULT_SIZE = 8; 00072 00073 private int numElements; 00074 private int maxElements; 00075 private Object[] elements; 00076 00077 public Array() 00078 { 00079 elements = new Object[DEFAULT_SIZE]; 00080 maxElements = DEFAULT_SIZE; 00081 numElements = 0; 00082 } 00083 public void addElement(Object e) 00084 { 00085 // Expand array if necessary 00086 if(numElements == maxElements) 00087 doubleCapacity(); 00088 00089 // Add element 00090 elements[numElements++] = e; 00091 } 00092 public void clear() 00093 { 00094 numElements = 0; 00095 } 00096 public boolean contains(Object e) 00097 { 00098 for(int i = 0; i < numElements; i++) 00099 if(elements[i].equals(e)) 00100 return true; 00101 00102 return false; 00103 } 00104 private void doubleCapacity() 00105 { 00106 int newSize = maxElements * 2; 00107 00108 Object[] newElements = new Object[newSize]; 00109 00110 System.arraycopy(elements, 0, newElements, 0, numElements); 00111 elements = newElements; 00112 maxElements = newSize; 00113 } 00114 public Object elementAt(int index) 00115 { 00116 return elements[index]; 00117 } 00118 public void insertElementAt(Object e, int index) 00119 { 00120 // Expaxpand array if necessary 00121 if(numElements == maxElements) 00122 doubleCapacity(); 00123 00124 // Handle simple case 00125 if(index == numElements) 00126 { 00127 elements[numElements++] = e; 00128 return; 00129 } 00130 00131 // Shift things over 00132 System.arraycopy(elements, index, elements, index + 1, numElements - index); 00133 elements[index] = e; 00134 numElements++; 00135 } 00136 public void removeElementAt(int index) 00137 { 00138 // Handle simple case 00139 if(index == numElements - 1) 00140 { 00141 numElements--; 00142 return; 00143 } 00144 00145 // Else, shift over elements 00146 System.arraycopy(elements, index + 1, elements, index, numElements - (index + 1)); 00147 numElements--; 00148 } 00149 public int size() 00150 { 00151 return numElements; 00152 } 00153 }