Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 222 of file searchTree.cc.
Referenced by TreeNodeSuccessor().
{ treeNode* temp = node; if(temp == NULL) return NULL; while(temp->left != NULL) { temp = temp->left; } return temp; }