java刷题-144二叉树的前序遍历
Posted Anrys
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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刷题100天—144. 二叉树的前序遍历(二叉树)—day07