您的位置:首页 > 其它

144. Binary Tree Preorder Traversal

2016-12-27 19:14 225 查看
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].

Note: Recursive solution is trivial, could you do it iteratively?

/**
* Definition for a binary tree node.
* struct TreeNode {
*     int val;
*     TreeNode *left;
*     TreeNode *right;
*     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector<int> preorderTraversal(TreeNode* root) {
vector<int> result;
TreeNode *p = root;
stack<TreeNode *>s;

if (root != NULL)
s.push(root);

while (!s.empty()) {
p = s.top();
s.pop();
result.push_back(p->val);

if (p->right != NULL) s.push(p->right);
if (p->left != NULL) s.push(p->left);
}
return result;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息