printf("递归后序遍历结果为\t"); Postorder(tree.root); printf("\n\n"); printf("非递归前序遍历结果为\t"); PreorderNonrecurion(tree.root); printf("\n\n"); printf("非递归中序遍历结果为\t"); InorderNonrecurion(tree.root); printf("\n\n"); printf("非递归后序遍历结果为\t"); ...