已知后序与中序输出前序(先序):后序:3, 4, 2, 6, 5, 1(左右根)中序:3, 2, 4, 1, 6, 5(左根右) 已知一棵二叉树,输出前,中,后时我们采用递归的方式.同样也应该利用递归的思想: 对于后序来说,最后一个节点肯定为根.在中序中可以找到左子树的个数,那么就可以在后序中找到左子树的根:同理也可以找到右子树. void pre(int root, int start, int end) { if(start > end) return ; int i = start; wh…