题解 | #二叉搜索树的第k个结点#

二叉搜索树的第k个结点

http://www.nowcoder.com/practice/ef068f602dde4d28aab2b210e859150a

/* function TreeNode(x) {
    this.val = x;
    this.left = null;
    this.right = null;
} */
function KthNode(pRoot, k)
{
    // write code here
    if(!pRoot || !k) {
        return null;
    }
    let res = [];
    let tempRes = [];
    tempRes.push(pRoot);
    while(tempRes.length) {
        let item = tempRes.shift();
        res.push(item);
        if(item.left) {
            tempRes.push(item.left);
        }
        if(item.right) {
            tempRes.push(item.right);
        }
    }
    res.sort((a, b) => a.val - b.val);
    return res[k - 1];
}
module.exports = {
    KthNode : KthNode
};
全部评论

相关推荐

无情咸鱼王的秋招日记之薛定谔的Offer:好拒信,偷了,希望有机会用到
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务