求助大神们
void DeleteNode(){
if (this->pLChild != NULL){
this->pLChild->DeleteNode();
}
这段代码中的this->pLChild调用DeleteNode()能删除左孩子吗?DeleteNode()函数中执行了什么命令
void DeleteNode(){
if (this->pLChild != NULL){
this->pLChild->DeleteNode();
}
这段代码中的this->pLChild调用DeleteNode()能删除左孩子吗?DeleteNode()函数中执行了什么命令
2019-08-15
举报