To the Top
File:  root - text - article - 2020 - 01 - maximum-path-sum-in-binary-tree.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 207 Views, 20798 Search Bots | 116 Words

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

You are given the root of a binary tree. Find the path between 2 nodes that maximizes the sum of all the nodes in the path, and return the sum. The path does not necessarily need to go through the root.


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

def maxPathSum(root):
# Fill this in.

# (* denotes the max path)
# *10
# / \
# *2 *10
# / \ \
# *20 1 -25
# / \
# 3 4
root = Node(10)
root.left = Node(2)
root.right = Node(10)
root.left.left = Node(20)
root.left.right = Node(1)
root.right.right = Node(-25)
root.right.right.left = Node(3)
root.right.right.right = Node(4)
print maxPathSum(root)
# 42
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 207 Views, 20798 Search Bots | 116 Words Subscribe to Feed Burner

Related Articles

  1. Progess made
  2. Staying on a Chess Board
  3. Daily Interview Problem: Find the k-th Largest Element in a List
  4. Daily Interview Problem: Given two arrays, write a function to compute their intersection.
  5. [Daily Problem] Move Zeros
  6. Consecutive Ones
  7. [Daily Problem] Remove k-th Last Element From Linked List
  8. Daily Interview Problem: Find the Number of Islands
  9. Daily Interview Problem: Count Number of Unival Subtrees
  10. Most Frequent Subtree Sum

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