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

144. Binary Tree Preorder Traversal

时间:2019-03-15 14:39:42      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:value   new   binary   tree   list   rsa   str   val   bin   

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

 

Solution 1://非递归

public class Solution {
    public List<Integer> preorderTraversal(TreeNode root) {  
        List<Integer> result = new ArrayList<>();    
        if (root == null) {  
            return result;  
        }    
        Stack<TreeNode> stack = new Stack<>();  
        stack.push(root);    
        while (!stack.empty()) {   
            TreeNode node = stack.pop();  
            result.add(node.val);    
            if (node.right != null) {  
                stack.push(node.right);  
            }    
            if (node.left != null) {  
                stack.push(node.left);  
            }  
        }    
        return result;  
    }  
}
 
Solution 2://递归
public class Solution {
    List<Integer> result = new ArrayList<>();
    
    public List<Integer> preorderTraversal(TreeNode root) {
        if (root != null)
            helper(root);                    
        return result;
    }
    
    private void helper(TreeNode root) {
        result.add(root.val);
        if (root.left != null)
            helper(root.left);
        if (root.right != null)
            helper(root.right);
    }
}

144. Binary Tree Preorder Traversal

标签:value   new   binary   tree   list   rsa   str   val   bin   

原文地址:https://www.cnblogs.com/MarkLeeBYR/p/10536706.html

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