页面顶部 Top
文件:  root - text - article - 2019 - 11 - create-a-balanced-binary-search-tree.txt
标签: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | 英文 | 主页 | 类别: 计算机科学 | 172 次阅读, 15244 次搜索 | 111 个单词

定阅此目录的博客 | 浏览 | 博客存档
Hi, here's your problem today. This problem was recently asked by LinkedIn:

Given a sorted list of numbers, change it into a balanced binary search tree. You can assume there will be no duplicate numbers in the list.

Here's a starting point:


from collections import deque

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

def __str__(self):
# level-by-level pretty-printer
nodes = deque([self])
answer = ''
while len(nodes):
node = nodes.popleft()
if not node:
continue
answer += str(node.value)
nodes.append(node.left)
nodes.append(node.right)
return answer


def createBalancedBST(nums):
# Fill this in.

print createBalancedBST([1, 2, 3, 4, 5, 6, 7])
# 4261357
# 4
# / \
# 2 6
#/ \ / \
#1 3 5 7
标签: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | 英文 | 主页 | 类别: 计算机科学 | 172 次阅读, 15244 次搜索 | 111 个单词 定阅此目录的博客

猜您喜欢...

  1. Number of Ways to Climb Stairs
  2. Daily Interview Problem: Get all Values at a Certain Height in a Binary Tree
  3. Binary Tree Level with Minimum Sum
  4. Two Tricks of Delphi
  5. Daily Interview Problem: Product of Array Except Self
  6. Daily Interview Problem: Contiguous Subarray with Maximum Sum
  7. [Daily Problem] Remove k-th Last Element From Linked List
  8. Daily Interview Question: Find Cycles in a Graph
  9. Daily Interview Problem: Longest Substring With K Distinct Characters
  10. Daily Interview Problem: Sort Colors

评论 (0)

    当前页暂时没有评论。


最后更新: October 30 2020 14:21:12 | RSS Subscription
牛排怎么做才好吃? | <meta name="机器人" content="不索引, 跟踪" />