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 | 208 Views, 21081 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 | 208 Views, 21081 Search Bots | 116 Words Subscribe to Feed Burner

Related Articles

  1. YES!!
  2. Daily Interview Problem: Maximum Profit From Stocks
  3. Daily Interview Problem: Distribute Bonuses
  4. [Daily Problem] Add two numbers as a linked list
  5. Delphi Dynamic Array
  6. Reverse a Directed Graph
  7. Daily Interview Puzzle: Intersection of Linked Lists
  8. Autorun.inf Virus Protection
  9. Algorithm Interview: Convert Roman Numerals to Decimal
  10. Daily Interview Problem: Deepest Node in a Binary Tree

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