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 | 209 Views, 20038 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 | 209 Views, 20038 Search Bots | 81 Words Subscribe to Feed Burner

Related Articles

  1. Daily Interview Question: Create a Simple Calculator
  2. Daily Interview Problem: Distribute Bonuses
  3. [Daily Problem] Course Prerequisites
  4. Daily Interview Problem: Circle of Chained Words
  5. New Vulnerabilities (CVE-2016-4581) have been detected in CentOS/RHEL/CloudLinux 7
  6. Daily Interview Problem: Tree Serialization
  7. Daily Interview Problem: Trapping Rainwater
  8. Daily Interview Problem: Validate Binary Search Tree
  9. Daily Interview Problem: Given two arrays, write a function to compute their intersection.
  10. [Daily Problem] Longest Increasing Subsequence

Comments (0)

    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="index, follow">