I still need help with using NULL instead of 0.
I have another question, as well: Why can I only initialize an object I have created with a 0 parameter constructor as follows:
And not
Since I have declared a 0 parameter constructor:
LinkedList::LinkedList()
: front( 0 ) { }