当前位置:   article > 正文

【leetcode】144. 二叉树的前序遍历(Java)_leetcode 144. 二叉树的前序遍历 java

leetcode 144. 二叉树的前序遍历 java

题目描述

题目链接144. 二叉树的前序遍历
在这里插入图片描述

题解

递归:

class Solution {
    List<Integer> res = new ArrayList<>();
    public List<Integer> preorderTraversal(TreeNode root) {
        if (root == null) return res;
        dfs(root);
        return res;
    }

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

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

迭代:
只要有递归,就可以用栈实现。 前序遍历,中左右。

class Solution {
    public List<Integer> preorderTraversal(TreeNode root) {
        List<Integer> res = new ArrayList<>();
        Deque<TreeNode> deque = new LinkedList<>();
        while (root != null || !deque.isEmpty()){
            while (root != null){
                res.add(root.val);
                deque.add(root);
                root = root.left;
            }
            root = deque.pollLast().right;
        }
        return res;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/668718
推荐阅读
相关标签
  

闽ICP备14008679号