Consider the following binary tree made up of both positive and negative integers. 5 -15) -8 1 4 10 Our problem is to find the maximum possible sum from one leaf to another in a binary tree. In the example above, the maximum sum is 27 which starts at leaf node 3 and ends at leaf node 10, that is, 3+6+9+0-1 + 10 = 27. a) (6 marks) Outline an algorithm that finds the maximum sum between two leaf nodes using a single traversal of the binary tree. b) Implement (10 marks) and test (4 marks) your algorithm in part a). You may wish to store additional information in each node. c) (4 marks) Augment your code in part b) to return the actual values along the maximum-sum path between the two leaf nodes.
Consider the following binary tree made up of both positive and negative integers. 5 -15) -8 1 4 10 Our problem is to find the maximum possible sum from one leaf to another in a binary tree. In the example above, the maximum sum is 27 which starts at leaf node 3 and ends at leaf node 10, that is, 3+6+9+0-1 + 10 = 27. a) (6 marks) Outline an algorithm that finds the maximum sum between two leaf nodes using a single traversal of the binary tree. b) Implement (10 marks) and test (4 marks) your algorithm in part a). You may wish to store additional information in each node. c) (4 marks) Augment your code in part b) to return the actual values along the maximum-sum path between the two leaf nodes.
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Should be answered using c#
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 2 steps with 2 images
Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education