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

Related Articles

  1. Algorithm Interview Question: Max and Min with Limited Comparisons
  2. Spreadsheet Columns
  3. Progess made
  4. YES!!
  5. Daily Interview Problem: Arithmetic Binary Tree
  6. Daily Interview Problem: 3 Sum
  7. Number of Ways to Climb Stairs
  8. Daily Interview Problem: Get all Values at a Certain Height in a Binary Tree
  9. Kaprekar
  10. Reverse a Linked List

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="noindex, follow" />