题解 | #实现二叉树先序,中序和后序遍历#

实现二叉树先序,中序和后序遍历

http://www.nowcoder.com/practice/a9fec6c46a684ad5a3abd4e365a9d362

/**
 * struct TreeNode {
 *	int val;
 *	struct TreeNode *left;
 *	struct TreeNode *right;
 * };
 */

class Solution {
public:
    /**
     * 
     * @param root TreeNode类 the root of binary tree
     * @return int整型vector<vector<>>
     */
    vector<vector<int> > threeOrders(TreeNode* root) {
        // write code here
        vector<vector<int> > res(3);
        preOrder(root,res[0]);
        inOrder(root,res[1]);
        posOrder(root,res[2]);
        return res;
    }
    vector<int> preOrder(TreeNode* root,vector<int>& res){
        if(root == nullptr) return {};
        res.push_back(root->val);
        preOrder(root->left, res);
        preOrder(root->right, res);
        return res;
    }
    vector<int> inOrder(TreeNode* root,vector<int>& res){
        if(root == nullptr) return {};
        inOrder(root->left, res);
        res.push_back(root->val);
        inOrder(root->right, res);
        return res;
    }
    vector<int> posOrder(TreeNode* root,vector<int>& res){
        if(root == nullptr) return {};
        posOrder(root->left, res);
        posOrder(root->right, res);
        res.push_back(root->val);
        return res;
    }
};
全部评论

相关推荐

11-14 16:13
已编辑
重庆科技大学 测试工程师
Amazarashi66:不进帖子我都知道🐮❤️网什么含金量
点赞 评论 收藏
分享
躺尸修仙中:因为很多92的也去卷中小厂,反正投递简历不要钱,面试不要钱,时间冲突就推,不冲突就面试积累经验
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务