二叉树的中序遍历

来源:互联网 发布:tensorflow官网镜像 编辑:程序博客网 时间:2024/06/14 03:25

问题描述:给出一棵二叉树,返回其中序遍历。

样例

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

   1    \     2    /   3

返回 [1,3,2].

解题思路:与前序遍历一样,同样使用递归的方式,先访问左子树,再保存根,最后访问右子树。

实验代码:

class Solution {
    /**
     * @param root: The root of binary tree.
     * @return: Inorder in vector which contains node values.
     */
     vector<int> x;
public:
    vector<int> inorderTraversal(TreeNode *root) {
        // write your code here
        if(root!=NULL)
        {
             inorderTraversal(root->left);
               x.push_back(root->val);
               inorderTraversal(root->right);
        }
        return x;
    }
};

个人感想:与前序遍历相似。

0 0
原创粉丝点击