题解 | #二叉树的前序遍历#
二叉树的前序遍历
https://www.nowcoder.com/practice/5e2135f4d2b14eb8a5b06fab4c938635
/** * 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 */ void preorder(vector<int> &vec, TreeNode* root) { if (root == NULL) { return; } vec.push_back(root->val); preorder(vec, root->left); preorder(vec, root->right); } vector<int> preorderTraversal(TreeNode* root) { // write code here vector<int> ans; preorder(ans, root); return ans; } };
给一个二叉树,返回这个树的前序遍历。【根左右】
方法:递归
思路,写一个递归函数,输入为vec,二叉树。输出为void
内部方法为,放入vector根的数值,并按照root的左子树,递归这个函数,root的右子树,递归这个函数。结束
然后调用完事。