To the Top
File:  root - text - article - 2020 - 01 - symmetric-k-ary-tree.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 303 Views, 18026 Search Bots | 118 Words

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

A k-ary tree is a tree with k-children, and a tree is symmetrical if the data of the left side of the tree is the same as the right side of the tree.

Here's an example of a symmetrical k-ary tree.

4
/ \
3 3
/ | \ / | \
9 4 1 1 4 9

Given a k-ary tree, figure out if the tree is symmetrical.

Here is a starting point:


class Node():
def __init__(self, value, children=[]):
self.value = value
self.children = children

def is_symmetric(root):
# Fill this in.

tree = Node(4)
tree.children = [Node(3), Node(3)]
tree.children[0].children = [Node(9), Node(4), Node(1)]
tree.children[1].children = [Node(1), Node(4), Node(9)]
print is_symmetric(tree)
# True
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 303 Views, 18026 Search Bots | 118 Words Subscribe to Feed Burner

Related Articles

  1. Two Tricks of Delphi
  2. Daily Interview Question: Longest Sequence with Two Unique Numbers
  3. Daily Interview Problem: Merge Overlapping Intervals
  4. Staying on a Chess Board
  5. Sorting a list with 3 unique numbers
  6. Spreadsheet Column Title
  7. Daily Interview Problem: Spiral Traversal of Grid
  8. Daily Interview Problem: Buddy Strings
  9. Daily Interview Problem: Running Median
  10. Algorithm Interview: Lowest Common Ancestor of 2 Nodes in Binary Tree

Comments (0)

Your Email (Domain Part Not Exposed):

Your Comments:

Privately By Mail Colors More Smileys S x y @

Verification (Click Image 2 Refresh):

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