首页 > 代码库 > [Leetcode] Binary Tree Inorder Traversal
[Leetcode] Binary Tree Inorder Traversal
Given a binary tree, return the inorder traversal of its nodes‘ values.
For example:
Given binary tree {1,#,2,3}
,
1 2 / 3
return [1,3,2]
.
Note: Recursive solution is trivial, could you do it iteratively?
[Thoughts]
先根遍历的迭代算法比较简单,但是中根遍历的迭代算法稍微难一点。同样借助于栈,但不同于先根遍历的中规中矩,中根遍历需要先把当前结点的所有左结点放入栈中,然后从栈中弹出前一个左结点(即当前的根结点),把值放入队列,然后指向右结点,重复直至栈空。
[Code]
/** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */public class Solution { public List<Integer> inorderTraversal(TreeNode root) { ArrayList<Integer> result = new ArrayList<Integer>(); if(root == null){ return result; } Stack<TreeNode> stack = new Stack<TreeNode>(); TreeNode cur = root; while(!stack.isEmpty() || cur != null){ while(cur != null){// put all the left node into stack stack.push(cur); cur = cur.left; } cur = stack.pop(); result.add(cur.val); cur = cur.right; } return result; }}
[Leetcode] Binary Tree Inorder Traversal
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。