zoukankan      html  css  js  c++  java
  • Binary Tree Preorder Traversal

    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].

    二叉树前序遍历的非递归版本,C++实现代码:

    #include<iostream>
    #include<new>
    #include<vector>
    #include<stack>
    using namespace std;
    
    //Definition for binary tree
    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)
        {
            stack<TreeNode*> s;
            vector<int> vec;
            if(root==NULL)
                return vector<int>();
            while(root||!s.empty())
            {
                while(root)
                {
                    s.push(root);
                    vec.push_back(root->val);
                    root=root->left;
                }
                if(!s.empty())
                {
                    root=s.top();
                    s.pop();
                    root=root->right;
                }
            }
            return vec;
        }
        void createTree(TreeNode *&root)
        {
            int i;
            cin>>i;
            if(i!=0)
            {
                root=new TreeNode(i);
                if(root==NULL)
                    return;
                createTree(root->left);
                createTree(root->right);
            }
        }
    };
    int main()
    {
        Solution s;
        TreeNode *root;
        s.createTree(root);
        vector<int> path=s.preorderTraversal(root);
        for(auto a:path)
        {
            cout<<a<<" ";
    
        }
        cout<<endl;
    }
  • 相关阅读:
    hdu1848(sg函数打表)
    hdu1850(nim博弈)
    hdu1847(sg函数&yy)
    hdu2147(yy)
    poj2133(sg函数)
    Educational Codeforces Round 18D(完全二叉树中序遍历&lowbit)
    atcoder057D(组合数模板)
    euler证明
    04_过滤器Filter_04_Filter生命周期
    04_过滤器Filter_03_多个Filter的执行顺序
  • 原文地址:https://www.cnblogs.com/wuchanming/p/4101305.html
Copyright © 2011-2022 走看看