码迷,mamicode.com
首页 > 其他好文 > 详细

Binary Tree Preorder Traversal

时间:2015-03-04 15:59:54      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

Binary Tree Preorder Traversal 

问题:

Given a binary tree, return the preorder traversal of its nodes‘ values.

Recursive solution is trivial, could you do it iteratively?

思路:

  栈的方法 弹出栈顶的时候 先加入有节点 再加入做节点 直到栈空

我的代码:

技术分享
public class Solution {
    public List<Integer> preorderTraversal(TreeNode root) {
        List<Integer> list = new ArrayList<Integer>();
        if(root == null)    return list;
        Stack<TreeNode> stack = new Stack<TreeNode>();  
        stack.push(root);
        do
        {
            TreeNode node = stack.pop();
            list.add(node.val);
            if(node.right != null)  stack.push(node.right);
            if(node.left != null)   stack.push(node.left);
        }while(!stack.isEmpty());
        return list;
    }
}
View Code

他人代码:

技术分享
public class Solution {
    public List<Integer> preorderTraversal(TreeNode root) {
        Stack<TreeNode> stack = new Stack<TreeNode>();
        List<Integer> preorder = new ArrayList<Integer>();
        
        if (root == null) {
            return preorder;
        }
        
        stack.push(root);
        while (!stack.empty()) {
            TreeNode node = stack.pop();
            preorder.add(node.val);
            if (node.right != null) {
                stack.push(node.right);
            }
            if (node.left != null) {
                stack.push(node.left);
            }
        }
        
        return preorder;
    }
}
View Code

学习之处:

  • 二叉树是有两个叉的树 二分查找树是满足左子树<节点<右子树 二叉平衡树 左子树和右子树的高度相差最大为1

Binary Tree Preorder Traversal

标签:

原文地址:http://www.cnblogs.com/sunshisonghit/p/4313339.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!