text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

c04p223.cpp

Go to the documentation of this file.
00001 
00015 // insert the new node pointed to by newPtr before
00016 // the node pointed to by cur
00017 newPtr->next = cur;
00018 newPtr->precede = cur->precede;
00019 cur->precede = newPtr;
00020 newPtr->precede->next = newPtr;

Generated on Sun Aug 27 13:05:37 2006 for AWLogo by  doxygen 1.4.6