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