题解 | #二叉树的前序遍历#
二叉树的前序遍历
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
*/
//全局定义数组p
vector<int> p;
vector<int> preorderTraversal(TreeNode* root) {
// write code here
intouput(root);
return p;
}
void intouput(TreeNode* root){
//插入元素
//输入元素为空返回空
if(root==nullptr){
return;
}
//插入根节点的元素值
p.push_back(root->val);
//递归输入左边的值
intouput(root->left);
//递归输入右边的值
intouput(root->right);
}
};


