void h(Node*tree)//后续遍历 { if(tree!=NULL) { h(tree->lchild); h(tree->rchild); cout<<tree->data; } }
会的 会按前序遍历输出