Maximum Sum Path in a Binary Tree

Your task is to determine the maximum possible sum of a simple path between any two nodes (possibly the same) in a given binary tree of 'N' nodes with integer values.

Explanation:

A simple path is defined as a path between any two nodes of a tree, such that no edge in the path is traversed more than once. The path's sum is the summation of all node values along the path.

Input:

The first line of input contains an integer 'T', representing the number of test cases. Subsequent lines for each test case provide the node values in level order form, separated by a space. Use -1 to signify a null node. The structure is flattened to a single line for each test case.

Output:

For each test case, output the maximum sum of a simple path between any two nodes in the tree. Provide each result on a new line.

Example:

Input:
1
1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1
Output:
18
Explanation:

The input represents a binary tree where the maximum sum simple path is 5 (from node 7, through nodes 4, 2, and 1, to node 3).

Constraints:

  • 1 ≤ T ≤ 100
  • 1 ≤ N ≤ 3000
  • -105 ≤ data ≤ 105, data ≠ -1
Note:
The example input format explanation demonstrates how to flatten a tree's level order traversal into a single input line.
AnswerBot
4mo

Find the maximum sum of a simple path between any two nodes in a binary tree.

  • Use a recursive approach to traverse the binary tree and calculate the maximum sum path.

  • Keep track of the maximum sum path ...read more

Help your peers!
Select
Add answer anonymously...

Nagarro Technical Trainee interview questions & answers

A Technical Trainee was asked Q. Detect and Remove Loop in Linked List For a given singly linked list, identify i...read more
A Technical Trainee was asked Q. Trapping Rainwater Problem Statement You are given an array ARR of long type, wh...read more
A Technical Trainee was asked Q. Spiral Order Traversal of a Binary Tree Given a binary tree with N nodes, your t...read more

Popular interview questions of Technical Trainee

A Technical Trainee was asked Q1. Detect and Remove Loop in Linked List For a given singly linked list, identify i...read more
A Technical Trainee was asked Q2. Trapping Rainwater Problem Statement You are given an array ARR of long type, wh...read more
A Technical Trainee was asked Q3. Spiral Order Traversal of a Binary Tree Given a binary tree with N nodes, your t...read more
Nagarro Technical Trainee Interview Questions
Stay ahead in your career. Get AmbitionBox app
play-icon
play-icon
qr-code
Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+

Reviews

10L+

Interviews

4 Cr+

Salaries

1.5 Cr+

Users

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter
Profile Image
Hello, Guest
AmbitionBox Employee Choice Awards 2025
Winners announced!
awards-icon
Contribute to help millions!
Write a review
Write a review
Share interview
Share interview
Contribute salary
Contribute salary
Add office photos
Add office photos
Add office benefits
Add office benefits