text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

c08p421b.cpp

Go to the documentation of this file.
00001 
00015 void SortedList::sortedInsert(const ListItemType& newItem)
00016    throw(ListException)
00017 {
00018    bool found;
00019    int newPosition = locatePosition(newItem, found);
00020    aList.insert(newPosition, newItem);
00021 }  // end sortedInsert

Generated on Sun Aug 27 19:59:37 2006 for AWLogo by  doxygen 1.4.6