To the Top
File:  root - text - article - 2020 - 02 - making-a-height-balanced-binary-search-tree.txt.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 329 Views, 21515 Search Bots | 104 Words

Subscribe to Feed Burner | Browse | Archive
Hi, here's your problem today. This problem was recently asked by Google:

Given a sorted list, create a height balanced binary search tree, meaning the height differences of each node can only differ by at most 1.

Here's some code to start with:


class Node:
def __init__(self, value, left=None, right=None):
self.value = value
self.left = left
self.right = right

def __str__(self):
answer = str(self.value)
if self.left:
answer += str(self.left)
if self.right:
answer += str(self.right)
return answer

def create_height_balanced_bst(nums):
# Fill this in.

tree = create_height_balanced_bst([1, 2, 3, 4, 5, 6, 7, 8])
# 53214768
# (pre-order traversal)
# 5
# / \
# 3 7
# / \ / \
# 2 4 6 8
# /
# 1
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 329 Views, 21515 Search Bots | 104 Words Subscribe to Feed Burner

Related Articles

  1. Daily Interview Problem: Min Stack
  2. Sorting a list with 3 unique numbers
  3. Daily Interview Problem: Look and Say Sequence
  4. PHP Unit Tests on VPS Server
  5. Daily Interview Problem: Trapping Rainwater
  6. Daily Interview Problem: Largest Product of 3 Elements I
  7. Find Missing Numbers in an Array
  8. Daily Interview Question: Find Cycles in a Graph
  9. Daily Interview Problem: Buddy Strings
  10. Detect Linked List Cycle

Comments (0)

    Be the first one to comment this page !


Page Edited: October 30 2020 14:21:09 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="noindex, follow" />