File: root - text - article - 2019 - 11 - get-all-values-at-a-certain-height-in-a-binary-tree.txt.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 501 Views, 29653 Search Bots | 81 Words
| Browse | Archive
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 501 Views, 29653 Search Bots | 81 Words
| Browse | Archive
Hi, here's your problem today. This problem was recently asked by Amazon:
Given a binary tree, return all values given a certain height h.
Here's a starting point:
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 501 Views, 29653 Search Bots | 81 Words Given a binary tree, return all values given a certain height h.
Here's a starting point:
class Node():
def __init__(self, value, left=None, right=None):
self.value = value
self.left = left
self.right = right
def valuesAtHeight(root, height):
# Fill this in.
# 1
# / \
# 2 3
# / \ \
# 4 5 7
a = Node(1)
a.left = Node(2)
a.right = Node(3)
a.left.left = Node(4)
a.left.right = Node(5)
a.right.right = Node(7)
print valuesAtHeight(a, 3)
# [4, 5, 7]
Related Articles
- Daily Interview Puzzle: Falling Dominoes
- Daily Interview Problem: Running Median
- Daily Interview Problem: Count Number of Unival Subtrees
- Absolute Path
- Top K Frequent words
- Algorithm Interview Question: Find the Single Element in an Array of Duplicates
- Algorithm Interview: Level Order Traversal of Binary Tree
- Algorithm Interview: Permutations of numbers
- Floor and Ceiling of a Binary Search Tree
- Invert a Binary Tree
©2006~2024 SteakOverCooked - 0.00699 Seconds(s) - 2835.578 KB/s - 12 Online Memory: 493.95 KB
18:54:01 up 13 days, 18:33, 2 users, load average: 0.98, 0.86, 0.73 - Server PHP Version: 7.4.33
How to Cook a Perfect Steak? | <meta name="robots" content="noindex, follow" />
18:54:01 up 13 days, 18:33, 2 users, load average: 0.98, 0.86, 0.73 - Server PHP Version: 7.4.33
Comments (0)
Read & Write - Normal - Mini - Post - All Comments - Statistics
Be the first one to comment this page !