Open
Description
习题
出处 LeetCode 算法第94题
给定一个二叉树,返回它的中序 遍历。
示例:
输入: [1,null,2,3] 1 \ 2 / 3 输出: [1,3,2]
思路
简单,递归即可
解答
/**
* Definition for a binary tree node.
* function TreeNode(val) {
* this.val = val;
* this.left = this.right = null;
* }
*/
/**
* @param {TreeNode} root
* @return {number[]}
*/
var inorderTraversal = function(root) {
var result = [];
if (root == null) {
return result;
}
return result.concat(inorderTraversal(root.left), root.val, inorderTraversal(root.right));
};
Metadata
Assignees
Labels
No labels