In this composite tree I am keeping a reference to the parent node for flexible tree traversal. I don't want to have to check the parent for a null reference all the time but if I make a NullNode class and initialize each node's parent to this I get a stack overflow since the NullNode has a NullNode has a NullNode has a.... ad infinitum I've tried setting the NullNode's parent to null but then I still have to do a null reference check for the parent which seems to defeat the purpose. anyone run into this? What, if anything can be done?
thanks!