144. Binary Tree Preorder Traversal
Posted 鸵鸟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了144. Binary Tree Preorder Traversal相关的知识,希望对你有一定的参考价值。
class Solution { public List<Integer> preorderTraversal(TreeNode root) { Stack<TreeNode> stack=new Stack<TreeNode>(); List<Integer> res=new ArrayList<Integer>(); while(root!=null||!stack.isEmpty()) { while(root!=null) { res.add(root.val); stack.push(root); root=root.left; } root=stack.pop().right; } return res; } }
class Solution { public List<Integer> preorderTraversal(TreeNode root) { List<Integer> res=new ArrayList<Integer>(); TreeNode cur=root, pre=null; while(cur!=null) { if(cur.left==null) { res.add(cur.val); cur=cur.right; } else { pre=cur.left; while(pre.right!=null&&pre.right!=cur) pre=pre.right; if(pre.right==null) { res.add(cur.val); pre.right=cur; cur=cur.left; } else { pre.right=null; cur=cur.right; } } } return res; } }
以上是关于144. Binary Tree Preorder Traversal的主要内容,如果未能解决你的问题,请参考以下文章
144. Binary Tree Preorder Traversal
144. Binary Tree Preorder Traversal
144. Binary Tree Preorder Traversal
144. Binary Tree Preorder Traversal