码迷,mamicode.com
首页 > 其他好文 > 详细

LintCode 67. 二叉树的中序遍历

时间:2018-01-27 11:41:14      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:node   zh-cn   color   非递归算法   push   算法   bin   strong   val   

题目:给出一棵二叉树,返回其中序遍历

 

样例

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

   1
         2
    /
   3

返回 [1,3,2].

挑战 

你能使用非递归算法来实现么?

 

解:递归解,非递归以后补充。

/**
 * 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: A Tree
     * @return: Inorder in ArrayList which contains node values.
     */
    vector<int> inorderTraversal(TreeNode * root) {
        // write your code here
        vector<int> re;
        if(root!=NULL)
            inorder(root,re);
        return re;
    }
    void inorder(TreeNode *node,vector<int> &re)
    {
        if(node==NULL)
            return;
        if(node->left!=NULL)
            inorder(node->left,re);
        re.push_back(node->val);
        if(node->right!=NULL)
            inorder(node->right,re);
    }
};

 

LintCode 67. 二叉树的中序遍历

标签:node   zh-cn   color   非递归算法   push   算法   bin   strong   val   

原文地址:https://www.cnblogs.com/zslhg903/p/8362096.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!