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

Related Articles

  1. Number of Ways to Climb Stairs
  2. Daily Interview Problem: Product of Array Except Self
  3. How to Play WAV music under DOS?
  4. Algorithm Interview: Permutations of numbers
  5. Algorithm Interview: Level Order Traversal of Binary Tree
  6. Daily Interview Problem: Get all Values at a Certain Height in a Binary Tree
  7. Algorithm Interview Question: Find the Single Element in an Array of Duplicates
  8. Delphi Dynamic Array
  9. Daily Interview Problem: Distribute Bonuses
  10. 56 Bytes

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