LintCode 二叉树的前序遍历

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LintCode 二叉树的前序遍历相关的知识,希望对你有一定的参考价值。

给出一棵二叉树,返回其节点值的前序遍历。

样例

给出一棵二叉树 {1,#,2,3},

   1
         2
    /
   3

 返回 [1,2,3].

挑战 

你能使用非递归实现么?

分析:使用非递归实现(栈)

* Definition of TreeNode:
 * class TreeNode {
 * public:
 *     int val;
 *     TreeNode *left, *right;
 *     TreeNode(int val) {
 *         this->val = val;
 *         this->left = this->right = NULL;
 *     }
 * }
 */

class Solution {
public:
    /**
     * @param root: The root of binary tree.
     * @return: Preorder in vector which contains node values.
     */
    vector<int> preorderTraversal(TreeNode *root) {
        // write your code here
       TreeNode *curr=root;
       stack<TreeNode *> mystack;
       vector<int> res;
       while(!mystack.empty()||curr!=NULL)
       {
           while(curr!=NULL)
           {
               res.push_back(curr->val);
               mystack.push(curr);
               curr=curr->left;
           }
           if(!mystack.empty())
           {
               curr=mystack.top();
               mystack.pop();
               curr=curr->right;
           }
       }
       return res;
    }
};

  还可以用数组指针。

/**
 * Definition of TreeNode:
 * class TreeNode {
 * public:
 *     int val;
 *     TreeNode *left, *right;
 *     TreeNode(int val) {
 *         this->val = val;
 *         this->left = this->right = NULL;
 *     }
 * }
 */

class Solution {
public:
    /**
     * @param root: The root of binary tree.
     * @return: Preorder in vector which contains node values.
     */
    vector<int> preorderTraversal(TreeNode *root) {
        // write your code here

         TreeNode *curr=root;
         TreeNode *mystack[1000];
         int top=0;
         vector<int> res;
         while(top!=0||curr!=NULL)
         {
             while(curr!=NULL)
            { 
             res.push_back(curr->val);
             mystack[top++]=curr;
             curr=curr->left;
            }
         
         if(top>0)
         {
             top--;
             curr=mystack[top];
             curr=curr->right;
             
         }
         }
         return res;
    }
};

  

以上是关于LintCode 二叉树的前序遍历的主要内容,如果未能解决你的问题,请参考以下文章

二叉树的前序中序后序层次遍历的原理及C++代码实现

根据二叉树的前序遍历和中序遍历构建二叉树的c语言完整代码

二叉树的前序遍历

二叉树的前序遍历

树的前序遍历与中序遍历构造二叉树和树的中序遍历与后序遍历构造二叉树

怎么根据二叉树的前序,中序,确定它的后序