BM24 二叉树的中序遍历
/**
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* };
*/
class Solution {
private:
vector<int> ans;
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param root TreeNode类
* @return int整型vector
*/
vector<int> inorderTraversal(TreeNode* root) {
// write code here
inoder(root);
return ans;
}
void inoder(TreeNode* root){
if(root){
inoder(root->left);
ans.push_back(root->val);
inoder(root->right);
}
}
};
BM25 二叉树的后序遍历
/**
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* };
*/
class Solution {
private:
vector<int> ans;
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param root TreeNode类
* @return int整型vector
*/
vector<int> postorderTraversal(TreeNode* root) {
// write code here
postorder(root);
return ans;
}
void postorder(TreeNode* root){
if(root){
postorder(root->left);
postorder(root->right);
ans.push_back(root->val);
}
}
};
- 本文链接:https://archer-lan.github.io/2022/03/21/%E7%89%9B%E5%AE%A2%E5%88%B7%E9%A2%98-DAY4/
- 版权声明:本博客所有文章除特别声明外,均默认采用 许可协议。