Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please answer for 1.2 1. Write a complete C++ code, for the following tasks: 1.1 Create a binary search tree from the given vector. The

Please answer for 1.2

image text in transcribed

1. Write a complete C++ code, for the following tasks: 1.1 Create a binary search tree from the given vector. The order of the element inserted to the tree should be in the order as they appear in the vector. You must make use for a for loop for this task. [5 points] Vector vec = {6, 10, 8, 3, 9, 20, 5, 2} 1.2 Perform a tree traversal to display the following output. You must display the exact output as shown below to get full points. [5 points] Tree Traversal 6 1 3 2151 10 |8| 9 20 I 1.3 Display the smallest and largest numbers in the tree. You must display the exact output as shown below to get full points. [5 points] The smallest number is :2 The largest number is : 20 1.4 Is the tree constructed from question 1.1 a complete binary tree? Why or why not? [5 points]

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle 10g Database Administrator Implementation And Administration

Authors: Gavin Powell, Carol McCullough Dieter

2nd Edition

1418836656, 9781418836658

More Books

Students also viewed these Databases questions