You are given the level order traversal of a binary tree. The level order traversal of a binary tree is defined as the sequence of node values visited by level, from the root node at level 0, followed by the nodes at level 1, then level 2, and so on. Each level is visited from left to right. If a node has no child, it is represented by the integer -1 in the level order traversal sequence. Your task is to compute the absolute difference between the height and diameter of the binary tree represented by the given level order traversal. The height of a binary tree is defined as the length of the longest path from the root node to any leaf node in the tree. The diameter of a binary tree is defined as the length of the longest path between any two nodes in the tree. Input The input consists of two lines. The first line contains a single integer n (1 ≤ n ≤ 10¹), the number of nodes in the binary tree. The second line contains 2n + 1 space-separated integers representing the level order traversal of the binary tree, where each integer represents the value of a node in the tree. The values of the nodes are unique and range from 1 to n. If a node has no child, it is represented by the integer -1. Output Output a single integer, the absolute difference between the height and diameter of the binary tree Examples input 6 1 2 3 4 -1 5 -1 6 -1 -1 -1 -1 -1 output 2 input 6 1 2 3 5 4 -1 6 -1 -1 -1 -1 -1 -1 output 2 input 6 1 2 -1 3 -1 4 -1 -1 5 -1 6 -1 -1 Copy Copy Copy Copy Copy

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
icon
Related questions
Question

PLEASE PROVIDE ME THE CODE IN C LANGUAGE.            

You are given the level order traversal of a binary tree. The level order traversal of a binary tree is defined as the sequence of node values
visited by level, from the root node at level 0, followed by the nodes at level 1, then level 2, and so on. Each level is visited from left to right.
If a node has no child, it is represented by the integer -1 in the level order traversal sequence.
Your task is to compute the absolute difference between the height and diameter of the binary tree represented by the given level order
traversal.
The height of a binary tree is defined as the length of the longest path from the root node to any leaf node in the tree.
The diameter of a binary tree is defined as the length of the longest path between any two nodes in the tree.
Input
The input consists of two lines. The first line contains a single integer n (1 ≤ n ≤ 10¹), the number of nodes in the binary tree.
The second line contains 2n + 1 space-separated integers representing the level order traversal of the binary tree, where each integer
represents the value of a node in the tree.
The values of the nodes are unique and range from 1 to n. If a node has no child, it is represented by the integer -1.
Output
Output a single integer, the absolute difference between the height and diameter of the binary tree
Examples
input
6
1 2 3 4 -15 -1 6 -1 -1 -1 -1 -1
output
2
input
6
1 2 3 5 4 -1 6 -1 -1 -1 -1 -1 -1
output
2
input
6
1 2 -1 3 -1 4 -1 -1 5 -1 6 -1 -1
output
0
Copy
Copy
Copy
Copy
Copy
Copy
Transcribed Image Text:You are given the level order traversal of a binary tree. The level order traversal of a binary tree is defined as the sequence of node values visited by level, from the root node at level 0, followed by the nodes at level 1, then level 2, and so on. Each level is visited from left to right. If a node has no child, it is represented by the integer -1 in the level order traversal sequence. Your task is to compute the absolute difference between the height and diameter of the binary tree represented by the given level order traversal. The height of a binary tree is defined as the length of the longest path from the root node to any leaf node in the tree. The diameter of a binary tree is defined as the length of the longest path between any two nodes in the tree. Input The input consists of two lines. The first line contains a single integer n (1 ≤ n ≤ 10¹), the number of nodes in the binary tree. The second line contains 2n + 1 space-separated integers representing the level order traversal of the binary tree, where each integer represents the value of a node in the tree. The values of the nodes are unique and range from 1 to n. If a node has no child, it is represented by the integer -1. Output Output a single integer, the absolute difference between the height and diameter of the binary tree Examples input 6 1 2 3 4 -15 -1 6 -1 -1 -1 -1 -1 output 2 input 6 1 2 3 5 4 -1 6 -1 -1 -1 -1 -1 -1 output 2 input 6 1 2 -1 3 -1 4 -1 -1 5 -1 6 -1 -1 output 0 Copy Copy Copy Copy Copy Copy
Expert Solution
steps

Step by step

Solved in 9 steps with 5 images

Blurred answer
Knowledge Booster
Types of trees
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education