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 | 237 Views, 18273 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 | 237 Views, 18273 Search Bots | 106 Words Subscribe to Feed Burner

Related Articles

  1. PHP Unit Tests on VPS Server
  2. Binary Tree Level with Minimum Sum
  3. Two Tricks of Delphi
  4. Floor and Ceiling of a Binary Search Tree
  5. Algorithm Interview Question: Max and Min with Limited Comparisons
  6. Daily Interview Problem: Reverse Words in a String
  7. Daily Interview Problem: Merge K Sorted Linked Lists
  8. How to Play WAV music under DOS?
  9. Daily Interview Problem: Group Words that are Anagrams
  10. Reverse a Directed Graph

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: May 11 2024 14:36:49 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="noindex, follow" />