Binary Tree Right Side View
Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.
Example:
层序遍历,保存每层最后一个
时间复杂度 o(n),空间复杂度 o(n)
Last updated
Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.
Example:
层序遍历,保存每层最后一个
时间复杂度 o(n),空间复杂度 o(n)
Last updated