previous
|
start
|
next
Memory Management for Linked Lists
As part of the "Big 3", we supply a copy constructor for the list class at well.
List::List(const List& b) { first = NULL; last = NULL; copy(b); }
These memory management functions will be included in the
List
implementation that follows.
previous
|
start
|
next