Here is an implementation for the array-based list, named AList.
AList inherits from the List ADT,and so must implement all of the member functions of List.
// Array-based list implementationclassAListimplementsList{privateObjectlistArray[];// Array holding list elementsprivatestaticfinalintDEFAULT_SIZE=10;// Default sizeprivateintmaxSize;// Maximum size of listprivateintlistSize;// Current # of list itemsprivateintcurr;// Position of current element// Constructors// Create a new list object with maximum size "size"AList(intsize){maxSize=size;listSize=curr=0;listArray=newObject[size];// Create listArray}// Create a list with the default capacityAList(){this(DEFAULT_SIZE);}// Just call the other constructorpublicvoidclear()// Reinitialize the list{listSize=curr=0;}// Simply reinitialize values// Insert "it" at current positionpublicbooleaninsert(Objectit){if(listSize>=maxSize)returnfalse;for(inti=listSize;i>curr;i--)// Shift elements uplistArray[i]=listArray[i-1];// to make roomlistArray[curr]=it;listSize++;// Increment list sizereturntrue;}// Append "it" to listpublicbooleanappend(Objectit){if(listSize>=maxSize)returnfalse;listArray[listSize++]=it;returntrue;}// Remove and return the current elementpublicObjectremove()throwsNoSuchElementException{if((curr<0)||(curr>=listSize))// No current elementthrownewNoSuchElementException("remove() in AList has current of "+curr+" and size of "+listSize+" that is not a a valid element");Objectit=listArray[curr];// Copy the elementfor(inti=curr;i<listSize-1;i++)// Shift them downlistArray[i]=listArray[i+1];listSize--;// Decrement sizereturnit;}publicvoidmoveToStart(){curr=0;}// Set to frontpublicvoidmoveToEnd(){curr=listSize;}// Set at endpublicvoidprev(){if(curr!=0)curr--;}// Move leftpublicvoidnext(){if(curr<listSize)curr++;}// Move rightpublicintlength(){returnlistSize;}// Return list sizepublicintcurrPos(){returncurr;}// Return current position// Set current list position to "pos"publicbooleanmoveToPos(intpos){if((pos<0)||(pos>listSize))returnfalse;curr=pos;returntrue;}// Return true if current position is at end of the listpublicbooleanisAtEnd(){returncurr==listSize;}// Return the current elementpublicObjectgetValue()throwsNoSuchElementException{if((curr<0)||(curr>=listSize))// No current elementthrownewNoSuchElementException("getvalue() in AList has current of "+curr+" and size of "+listSize+" that is not a a valid element");returnlistArray[curr];}// Check if the list is emptypublicbooleanisEmpty(){returnlistSize==0;}}
// Array-based list implementationclassAList<E>implementsList<E>{privateElistArray[];// Array holding list elementsprivatestaticfinalintDEFAULT_SIZE=10;// Default sizeprivateintmaxSize;// Maximum size of listprivateintlistSize;// Current # of list itemsprivateintcurr;// Position of current element// Constructors// Create a new list object with maximum size "size"@SuppressWarnings("unchecked")// Generic array allocationAList(intsize){maxSize=size;listSize=curr=0;listArray=(E[])newObject[size];// Create listArray}// Create a list with the default capacityAList(){this(DEFAULT_SIZE);// Just call the other constructor}publicvoidclear(){// Reinitialize the listlistSize=curr=0;// Simply reinitialize values}// Insert "it" at current positionpublicbooleaninsert(Eit){if(listSize>=maxSize){returnfalse;}for(inti=listSize;i>curr;i--){// Shift elements uplistArray[i]=listArray[i-1];// to make room}listArray[curr]=it;listSize++;// Increment list sizereturntrue;}// Append "it" to listpublicbooleanappend(Eit){if(listSize>=maxSize){returnfalse;}listArray[listSize++]=it;returntrue;}// Remove and return the current elementpublicEremove()throwsNoSuchElementException{if((curr<0)||(curr>=listSize)){// No current elementthrownewNoSuchElementException("remove() in AList has current of "+curr+" and size of "+listSize+" that is not a a valid element");}Eit=listArray[curr];// Copy the elementfor(inti=curr;i<listSize-1;i++){// Shift them downlistArray[i]=listArray[i+1];}listSize--;// Decrement sizereturnit;}publicvoidmoveToStart(){// Set to frontcurr=0;}publicvoidmoveToEnd(){// Set at endcurr=listSize;}publicvoidprev(){// Move leftif(curr!=0){curr--;}}publicvoidnext(){// Move rightif(curr<listSize){curr++;}}publicintlength(){// Return list sizereturnlistSize;}publicintcurrPos(){// Return current positionreturncurr;}// Set current list position to "pos"publicbooleanmoveToPos(intpos){if((pos<0)||(pos>listSize)){returnfalse;}curr=pos;returntrue;}// Return true if current position is at end of the listpublicbooleanisAtEnd(){returncurr==listSize;}// Return the current elementpublicEgetValue()throwsNoSuchElementException{if((curr<0)||(curr>=listSize)){// No current elementthrownewNoSuchElementException("getvalue() in AList has current of "+curr+" and size of "+listSize+" that is not a a valid element");}returnlistArray[curr];}//Tell if the list is empty or notpublicbooleanisEmpty(){returnlistSize==0;}}
// Array-based list implementationclassAList:publicList{ListItemType*listArray;// Array holding list elementsstaticconstintDEFAULT_SIZE=10;// Default sizeintmaxSize;// Maximum size of listintlistSize;// Current # of list itemsintcurr;// Position of current elementpublic:// Constructors// Create a new list object with maximum size "size"AList(intsize=DEFAULT_SIZE):listSize(0),curr(0){maxSize=size;listArray=newListItemType[size];// Create listArray}~AList(){delete[]listArray;}// destructor to remove array// Reinitialize the listvoidclear(){listSize=curr=0;}// Simply reinitialize values// Insert "it" at current positionboolinsert(constListItemType&it){if(listSize>=maxSize)returnfalse;for(inti=listSize;i>curr;i--)// Shift elements uplistArray[i]=listArray[i-1];// to make roomlistArray[curr]=it;listSize++;// Increment list sizereturntrue;}// Append "it" to listboolappend(constListItemType&it){if(listSize>=maxSize)returnfalse;listArray[listSize++]=it;returntrue;}// Remove and return the current elementListItemTyperemove(){if((curr<0)||(curr>=listSize))// No current elementthrowstd::out_of_range("remove() in AList has current of "+to_string(curr)+" and size of "+to_string(listSize)+" that is not a a valid element");ListItemTypeit=listArray[curr];// Copy the elementfor(inti=curr;i<listSize-1;i++)// Shift them downlistArray[i]=listArray[i+1];listSize--;// Decrement sizereturnit;}voidmoveToStart(){curr=0;}// Set to frontvoidmoveToEnd(){curr=listSize;}// Set at endvoidprev(){if(curr!=0)curr--;}// Move leftvoidnext(){if(curr<listSize)curr++;}// Move rightintlength(){returnlistSize;}// Return list sizeintcurrPos(){returncurr;}// Return current position// Set current list position to "pos"boolmoveToPos(intpos){if((pos<0)||(pos>listSize))returnfalse;curr=pos;returntrue;}// Return true if current position is at end of the listboolisAtEnd(){returncurr==listSize;}// Return the current elementListItemTypegetValue(){if((curr<0)||(curr>=listSize))// No current elementthrowstd::out_of_range("getvalue() in AList has current of "+to_string(curr)++" and size of "+to_string(listSize)+" that is not a a valid element");returnlistArray[curr];}// Check if the list is emptyboolisEmpty(){returnlistSize==0;}};
Because the array-based list implementation is defined to store list
elements in contiguous cells of the array, the insert, append,
and remove methods must maintain this property.
Removing an element from the head of the list is
similar to insert in that all remaining elements must shift toward
the head by one position to fill in the gap.
If we want to remove the element at position i, then
n−i−1 elements must shift toward the head, as shown in the
following slideshow.
Aside from insert and remove, the only other operations that
might require more than constant time are the constructor and
clear.
The other methods for Class AList simply
access the current list element or move the current position.
They all require Θ(1) time.