2. A) Construct a Binary Search Tree using the following data 40, 60, 50, 55, 29, 35, 32, 9 Must show the dummy nodes once the tree is completed. Also show the addition of first four nodes in details. b) Illustrate how will you search for V = 32 from this tree, and what will be the runtime.
2. A) Construct a Binary Search Tree using the following data 40, 60, 50, 55, 29, 35, 32, 9 Must show the dummy nodes once the tree is completed. Also show the addition of first four nodes in details. b) Illustrate how will you search for V = 32 from this tree, and what will be the runtime.
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

Transcribed Image Text:2. A) Construct a Binary Search Tree using the following data
40, 60, 50, 55, 29, 35, 32,9
Must show the dummy nodes once the tree is completed. Also show the addition of first four
nodes in details.
b) Illustrate how will you search for V = 32 from this tree, and what will be the runtime.
Expert Solution

Step 1
Part(A)
- Insert 40 as the root node.
- Now, inserting node 60 and as 60>=40 hence the node 60 becomes the right child for the node 40.
- Now, inserting node 50 and as 50>=40 and 50<=60 hence the node 50 becomes the left child for the node 60.
- Now, inserting node 55 and as 55>=40 and 55<=60 and 55>=50 hence the node 55 becomes the right child for the node 50.
- Now inserting the nodes with values as 29, 35, 32 and 9, the binary search tree becomes:
Step by step
Solved in 2 steps with 6 images

Knowledge Booster
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
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