美文网首页
144. Binary Tree Preorder Traver

144. Binary Tree Preorder Traver

作者: juexin | 来源:发表于2017-01-09 19:11 被阅读0次

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?

class Solution {
public:
    vector<int> preorderTraversal(TreeNode* root) {
        vector<int> path;
        TreeNode* p = NULL;
        if(root == NULL)
          return path;
        stack<TreeNode*> s;
        s.push(root);
        while(!s.empty())
        {
            p = s.top();
            path.push_back(p->val);
            s.pop();
            if(p->right)
              s.push(p->right);
            if(p->left)
              s.push(p->left);
        }
        return path;
    }
};

相关文章

网友评论

      本文标题:144. Binary Tree Preorder Traver

      本文链接:https://www.haomeiwen.com/subject/iyphbttx.html