Binary Tree Preorder Traversal

Source: Internet
Author: User

Given a binary tree, return the preorder traversal of its nodes 'values. for example: Given binary tree {1, #, 2/3}, 1 \ return [, 3]. note: Recursive solution is trivial, cocould you do it iteratively? Java code: recursive solution:

/**  * Definition for binary tree  * public class TreeNode {  *     int val;  *     TreeNode left;  *     TreeNode right;  *     TreeNode(int x) { val = x; }  * }  */  public class Solution {      public ArrayList<Integer> preorderTraversal(TreeNode root) {          // IMPORTANT: Please reset any member data you declared, as          // the same Solution instance will be reused for each test case.          ArrayList<Integer> res = new ArrayList<Integer>();           if(root == null)               return res;           pre(res,root);           return res;      }      public void pre(ArrayList<Integer> res, TreeNode root)       {           res.add(root.val);           if(root.left != null)               pre(res, root.left);           if(root.right != null)               pre(res, root.right);       }  }  

 

Iteratively solution:
/**  * Definition for binary tree  * public class TreeNode {  *     int val;  *     TreeNode left;  *     TreeNode right;  *     TreeNode(int x) { val = x; }  * }  */  public class Solution {      public ArrayList<Integer> preorderTraversal(TreeNode root) {          // IMPORTANT: Please reset any member data you declared, as          // the same Solution instance will be reused for each test case.          ArrayList<Integer> res = new ArrayList<Integer>();           if(root == null)               return res;           Stack<TreeNode> st = new Stack<TreeNode>();           st.push(root);           while(!st.isEmpty())           {               TreeNode cur = st.peek();               res.add(cur.val);               st.pop();               if(cur.right != null)                   st.push(cur.right);               if(cur.left != null)                   st.push(cur.left);           }           st = null;           return res;      }        }  

 


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.