java刷题-144二叉树的前序遍历

Posted Anrys

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java刷题-144二叉树的前序遍历相关的知识,希望对你有一定的参考价值。

java刷题-144二叉树的前序遍历

题目

在这里插入图片描述

代码

class Solution {
    public List<Integer> preorderTraversal(TreeNode root) {
        LinkedList<Integer> res = new LinkedList();
        Stack<TreeNode> stack = new Stack<>();
        if(root==null) return res;
        stack.add(root);
        while(!stack.isEmpty()) {
            TreeNode temp = stack.pop();
            res.add(temp.val); //输出根节点
            if(temp.right!=null) stack.add(temp.right);
            if(temp.left!=null) stack.add(temp.left);
        }return res;
    }
}

结果

在这里插入图片描述

以上是关于java刷题-144二叉树的前序遍历的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode刷题Python144. 二叉树的前序遍历

144_二叉树的前序遍历

Leetcode刷题100天—144. 二叉树的前序遍历(二叉树)—day07

精选力扣500题 第55题 LeetCode 144. 二叉树的前序遍历c++/java详细题解

二叉树的前序遍历144

LeetCode-144. 二叉树的前序遍历(java)