慕盖茨5551650
2018-06-02 09:27
void h(Node*tree)//后续遍历 { if(tree!=NULL) { h(tree->lchild); h(tree->rchild); cout<<tree->data; } }
会的 会按前序遍历输出
数据结构探险之树篇
56467 学习 · 116 问题
相似问题
回答 1
回答 3