0
点赞
收藏
分享

微信扫一扫

面试必刷TOP101:25、二叉树的后序遍历

题目

面试必刷TOP101:25、二叉树的后序遍历_List

题解

import java.util.*;

/*
 * public class TreeNode {
 *   int val = 0;
 *   TreeNode left = null;
 *   TreeNode right = null;
 *   public TreeNode(int val) {
 *     this.val = val;
 *   }
 * }
 */

public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param root TreeNode类 
     * @return int整型一维数组
     */
    public int[] postorderTraversal (TreeNode root) {
        // write code here
        List<Integer> list = new ArrayList<>();
        postorder(list,root);
        int[] res = new int[list.size()];
        for(int i = 0; i < list.size();i++){
            res[i] = list.get(i);
        } 
        return res;
    }
    public void postorder(List<Integer> list,TreeNode root){
        if(root == null) return;
        postorder(list,root.left);
        postorder(list,root.right);
        list.add(root.val);
    }
}

举报

相关推荐

0 条评论