To the Top
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 | 200 Views, 19851 Search Bots | 81 Words

Subscribe to Feed Burner | 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:


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]
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 200 Views, 19851 Search Bots | 81 Words Subscribe to Feed Burner

Related Articles

  1. Daily Interview Problem: Sort Colors
  2. Algorithm Interview Question: Find the Single Element in an Array of Duplicates
  3. Palindrome Integers
  4. Daily Interview Question: Edit Distance
  5. Daily Interview Puzzle: Minimum Size Subarray Sum
  6. Two-Sum
  7. Most Frequent Subtree Sum
  8. [Daily Problem] Remove Consecutive Nodes that Sum to 0
  9. Staying on a Chess Board
  10. Daily Interview Question: Create a Simple Calculator

Comments (0)

Your Email (Domain Part Not Exposed):

Your Comments:

Privately By Mail Colors More Smileys S x y @

Verification (Click Image 2 Refresh):

    Be the first one to comment this page !


Page Edited: May 11 2024 14:36:49 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="noindex, follow" />