Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

二叉树的右视图 #1065

Open
pwstrick opened this issue Jul 31, 2020 · 0 comments
Open

二叉树的右视图 #1065

pwstrick opened this issue Jul 31, 2020 · 0 comments
Labels
Leetcode Leetcode的题目

Comments

@pwstrick
Copy link
Owner

199. 二叉树的右视图

/**
 * Definition for a binary tree node.
 * function TreeNode(val) {
 *     this.val = val;
 *     this.left = this.right = null;
 * }
 */
/**
 * @param {TreeNode} root
 * @return {number[]}
 */
var rightSideView = function(root) {
    if(!root)
        return [];
    const queue = [root],
        nodes = [];
    while(queue.length > 0) {
        let len = queue.length;
        nodes.push(queue[len-1].val);
        for(let i=0; i<len; i++) {
            queue[i].left && queue.push(queue[i].left);
            queue[i].right && queue.push(queue[i].right);
        }
        queue.splice(0, len);
    }
    return nodes;
};
@pwstrick pwstrick added the Leetcode Leetcode的题目 label Jul 31, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Leetcode Leetcode的题目
Projects
None yet
Development

No branches or pull requests

1 participant