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 | 340 Views, 20928 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 | 340 Views, 20928 Search Bots | 111 Words Subscribe to Feed Burner

Related Articles

  1. Daily Interview Problem: Largest Product of 3 Elements I
  2. Consecutive Ones
  3. Daily Interview Problem: Group Words that are Anagrams
  4. Daily Interview Puzzle: Minimum Size Subarray Sum
  5. Linode Support Ticket 10029540 - Other - Important Notice Regarding Ubuntu 17.10 Image
  6. Daily Interview Problem: Reverse Integer
  7. Algorithm Interview: Subarray With Target Sum
  8. Daily Interview Problem: Spiral Traversal of Grid
  9. Daily Interview Problem: First Missing Positive Integer
  10. Sorting a list with 3 unique numbers

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