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, 21213 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, 21213 Search Bots | 104 Words Subscribe to Feed Burner

Related Articles

  1. Daily Interview Problem: Find the k-th Largest Element in a List
  2. Find Missing Numbers in an Array
  3. Sort a Partially Sorted List
  4. [Daily Problem] Remove k-th Last Element From Linked List
  5. Daily Interview Problem: Tree Serialization
  6. Find the non-duplicate number
  7. Daily Interview Question: Find Cycles in a Graph
  8. Daily Interview Puzzle: Minimum Size Subarray Sum
  9. Daily Interview Problem: Queue Using Two Stacks
  10. Absolute Path

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