這是遞歸調(diào)用函數(shù),請(qǐng)問(wèn)它一直遞歸,會(huì)返還上一層嗎
void?h(Node*tree)//后續(xù)遍歷 { if(tree!=NULL) { h(tree->lchild); h(tree->rchild); cout<<tree->data; } }
void?h(Node*tree)//后續(xù)遍歷 { if(tree!=NULL) { h(tree->lchild); h(tree->rchild); cout<<tree->data; } }
舉報(bào)
2018-06-14
會(huì)的? 會(huì)按前序遍歷輸出