LeetCode94-二叉树的中序遍历

给定一个二叉树,返回它的中序 遍历。 示例: 输入: [1,null,2,3] 1 \ 2 / 3 输出: [1,3,2] 进阶: 递归算法很简单,你可以通过迭代算法完成吗? 一、思路 1、递归版本: class Solution { public: vector<int> nums; vector<int> inorderTraversal(TreeN
相关文章
相关标签/搜索