To the Top
File:  root - text - article - 2020 - 02 - print-a-tree-level-by-level,-with-line-breaks.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 341 Views, 21206 Search Bots | 111 Words

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

You are given a tree, and your job is to print it level-by-level with linebreaks.

a
/ \
b c
/ \ / \
d e f g

The output should be
a
bc
defg
Here's a starting point:


from collections import deque

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

def __str__(self):
# Fill this in.

tree = Node('a')
tree.left = Node('b')
tree.right = Node('c')
tree.left.left = Node('d')
tree.left.right = Node('e')
tree.right.left = Node('f')
tree.right.right = Node('g')

print tree
# a
# bc
# defg
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 341 Views, 21206 Search Bots | 111 Words Subscribe to Feed Burner

Related Articles

  1. Daily Interview Question: Word Search
  2. Generate All IP Addresses
  3. Daily Interview Problem: Find the k-th Largest Element in a List
  4. Linode Support Ticket 10029540 - Other - Important Notice Regarding Ubuntu 17.10 Image
  5. Patterns for breaking down questions you haven
  6. Daily Interview Problem: Product of Array Except Self
  7. Algorithm Interview: String Compression
  8. Daily Interview Problem: Running Median
  9. Find the non-duplicate number
  10. Daily Interview Problem: Merge K Sorted Linked Lists

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" />