/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} * }; */ #include <vector> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param root TreeNode类 * @return int整型vector */ vector<int>ve; vector<int> inorderTraversal(TreeNode* root) { // write code here dfs(root); return ve; } int dfs(TreeNode* root) { if (!root)return 0; dfs(root->left); ve.push_back(root->val); dfs(root->right); return 0; } };
一、题目考察的知识点
中序遍历+二叉搜索树
二、题目解答方法的文字分析
前面应该出现过类似的题目,就是说二叉搜索树的中序遍历是一个递增数列,这样就满足题目要求
三、本题解析所用的编程语言
c++