class Solution { public: /** * * @param root TreeNode类 the root of binary tree * @return int整型vector<vector<>> */ vector<vector<int> > threeOrders(TreeNode* root) { //返回二维数组 // 分别调用三个遍历函数,分别尾***二维数组 vector<vector<int> >...