码迷,mamicode.com
首页 > 其他好文 > 详细

145. 二叉树的后序遍历

时间:2019-05-22 22:37:19      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:push   通过   code   tor   代码   null   new   return   integer   

题目描述

给定一个二叉树,返回它的 后序 遍历。

示例:

输入: [1,null,2,3]  
   1
         2
    /
   3 

输出: [3,2,1]

进阶: 递归算法很简单,你可以通过迭代算法完成吗?

分析

后序遍历顺序是 left->right->root

贴出代码

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    // 迭代版
    public List<Integer> postorderTraversal(TreeNode root) {
        List<Integer> res = new ArrayList<>();
        LinkedList<TreeNode> s = new LinkedList<>();
        TreeNode current = root, isVisited = null;
        while (current != null || !s.isEmpty()){
            while (current != null){
                s.push(current);
                current = current.left;
            }
            current = s.peek();
            if (current.right == null || current.right == isVisited){
                s.pop();
                res.add(current.val);
                isVisited = current;
                current = null;
            }else {
                current = current.right;
            }
        }
        return res;
    }
}

145. 二叉树的后序遍历

标签:push   通过   code   tor   代码   null   new   return   integer   

原文地址:https://www.cnblogs.com/Tu9oh0st/p/10908760.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!