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

Computer Science homework question answer, step 1, image 1

  • Now, inserting node 60 and as 60>=40 hence the node 60 becomes the right child for the node 40.

Computer Science homework question answer, step 1, image 2

  • Now, inserting node 50 and as 50>=40 and 50<=60 hence the node 50 becomes the left child for the node 60.

Computer Science homework question answer, step 1, image 3

  • 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.

Computer Science homework question answer, step 1, image 4

  • Now inserting the nodes with values as 29, 35, 32 and 9, the binary search tree becomes:

Computer Science homework question answer, step 1, image 5

steps

Step by step

Solved in 2 steps with 6 images

Blurred answer
Knowledge Booster
Binomial Heap
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.
Similar questions
  • SEE MORE QUESTIONS
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