题解 | #二叉树的后序遍历# | Rust

二叉树的后序遍历

https://www.nowcoder.com/practice/1291064f4d5d4bdeaefbf0dd47d78541

/**
 * #[derive(PartialEq, Eq, Debug, Clone)]
 * pub struct TreeNode {
 *     pub val: i32,
 *     pub left: Option<Box<TreeNode>>,
 *     pub right: Option<Box<TreeNode>>,
 * }
 *
 * impl TreeNode {
 *     #[inline]
 *     fn new(val: i32) -> Self {
 *         TreeNode {
 *             val: val,
 *             left: None,
 *             right: None,
 *         }
 *     }
 * }
 */
struct Solution{

}

impl Solution {
    fn new() -> Self {
        Solution{}
    }

    /**
    * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
    *
    * 
        * @param root TreeNode类 
        * @return int整型一维数组
    */
    pub fn postorderTraversal(&self, root: Option<Box<TreeNode>>) -> Vec<i32> {
        let mut array : Vec<i32> = Vec::new();
        Solution::dfs(self, root.clone(), &mut array);
        return array;
    }

    pub fn dfs(&self, node: Option<Box<TreeNode>>, array: &mut Vec<i32>) {
        if node.is_none() {
            return;
        }
        Solution::dfs(self, node.as_ref().unwrap().left.clone(), array);
        Solution::dfs(self, node.as_ref().unwrap().right.clone(), array);
        array.push(node.as_ref().unwrap().val);
    }
}

全部评论

相关推荐

预计下个星期就能开奖吧,哪位老哥来给个准信
华孝子爱信等:对接人上周说的是这周
点赞 评论 收藏
分享
孤寡孤寡的牛牛很热情:为什么我2本9硕投了很多,都是简历或者挂,难道那个恶心人的测评真的得认真做吗
点赞 评论 收藏
分享
比亚迪汽车新技术研究院 硬件工程师 总包21左右 硕士
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务