您的位置:首页 > 其它

LeetCode题解:Binary Tree Preorder Traversal

2016-03-01 16:49 302 查看
Given a binary tree, return the preorder traversal of its nodes’ values.

For example:

Given binary tree {1,#,2,3},

1

\

2

/

3

return [1,2,3].

题意:先序遍历

思路:

代码:

/**
* Definition for a binary tree node.
* public class TreeNode {
*     int val;
*     TreeNode left;
*     TreeNode right;
*     TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public List<Integer> preorderTraversal(TreeNode root) {
Stack<TreeNode> rights = new Stack<TreeNode>();
List<Integer> result = new ArrayList<Integer>();

while(root != null){
result.add(root.val);

if(root.right != null){
rights.push(root.right);
}

root = root.left;

if(root == null && !rights.isEmpty()){
root = rights.pop();
}
}

return result;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: