To the Top
File:  root - text - article - 2019 - 11 - deepest-node-in-a-binary-tree.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 176 Views, 16002 Search Bots | 106 Words

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

You are given the root of a binary tree. Return the deepest node (the furthest node from the root).

Example:


a
/ \
b c
/
d


The deepest node in this tree is d at depth 3.

Here's a starting point:


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

def __repr__(self):
# string representation
return self.val


def deepest(node):
# Fill this in.

root = Node('a')
root.left = Node('b')
root.left.left = Node('d')
root.right = Node('c')

print deepest(root)
# (d, 3)
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 176 Views, 16002 Search Bots | 106 Words Subscribe to Feed Burner

Related Articles

  1. Daily Interview Problem: Room scheduling
  2. Consecutive Ones
  3. Daily Interview Problem: Circle of Chained Words
  4. [Daily Problem] Course Prerequisites
  5. Sort a Partially Sorted List
  6. Generate All IP Addresses
  7. Algorithm Interview: Permutations of numbers
  8. Find Pythagorean Triplets
  9. Algorithm Interview: Smallest Number that is not a Sum of a Subset of List
  10. Daily Interview Problem: Queue Using Two Stacks

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