File: root - text - article - 2019 - 11 - create-a-balanced-binary-search-tree.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 494 Views, 24193 Search Bots | 111 Words
| Browse | Archive
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 494 Views, 24193 Search Bots | 111 Words
| Browse | Archive
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:
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 494 Views, 24193 Search Bots | 111 Words 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
Related Articles
- A trick for getting good at coding interviews FASTER
- [Daily Problem] Longest Increasing Subsequence
- Non-decreasing Array with Single Modification
- Daily Interview Question: Longest Sequence with Two Unique Numbers
- [Daily Problem] Course Prerequisites
- Fibonacci coding
- Algorithm Interview: Determine If Linked List is Palindrome
- How to Play WAV music under DOS?
- Algorithm Interview: Permutations of numbers
- Daily Interview Problem: Trapping Rainwater
©2006~2024 SteakOverCooked - 0.00731 Seconds(s) - 2791.285 KB/s - 15 Online Memory: 495.06 KB
18:54:01 up 13 days, 18:33, 2 users, load average: 0.98, 0.86, 0.73 - Server PHP Version: 7.4.33
How to Cook a Perfect Steak? | <meta name="robots" content="index, follow">
18:54:01 up 13 days, 18:33, 2 users, load average: 0.98, 0.86, 0.73 - Server PHP Version: 7.4.33
Comments (0)
Read & Write - Normal - Mini - Post - All Comments - Statistics
Be the first one to comment this page !