145. 二叉树的后序遍历(后序遍历)


145. 二叉树的后序遍历

题目

给定一个二叉树,返回它的 后序 遍历。
在这里插入图片描述

解题思路

简单,后序遍历

代码

class Solution {
    List<Integer> list=new ArrayList<>();
    public List<Integer> postorderTraversal(TreeNode root) {
            if (root == null) {
                return list;
            }
            help(root);

            return list;
    }

 public void help(TreeNode root) {
            if (root == null) {
                return;
            }
           
            help(root.left);
            help(root.right);
            list.add(root.val);
        }
}

文章作者: fFee-ops
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 fFee-ops !
评论
  目录