1、思路 二叉树的后序遍历为先左、再右、最后根的顺序,即二叉树的头节点值为数组的最后一个元素; 例如数组 [2, 1, 3, 6, 5, 7, 4],比4小的部分为[2, 1, 3],比4大的部分为[6, 5, 7],再继续递归地判断这两部分子树。 2、代码 #include <iostream> #include <vector> using namespace std; bool isPostOrder(vector<int>& nums, int st, int ed) { if (st == ed) { ...