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

Related Articles

  1. Sorting a list with 3 unique numbers
  2. Daily Interview Problem: Maximum Profit From Stocks
  3. Daily Interview Puzzle: Ways to Traverse a Grid
  4. Daily Interview Puzzle: Intersection of Linked Lists
  5. Daily Interview Problem: Arithmetic Binary Tree
  6. Algorithm Interview: Permutations of numbers
  7. Daily Interview Puzzle: Falling Dominoes
  8. Algorithm Interview: Shifted String
  9. Daily Interview Problem: Reverse Words in a String
  10. Consecutive Ones

Comments (0)

    Be the first one to comment this page !


Page Edited: May 11 2024 14:36:49 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="index, follow">