Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In this question, you will implement a binary tree according to the following specifications: Implement a Python class named binary_tree that provides the following APls:

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed

In this question, you will implement a binary tree according to the following specifications: Implement a Python class named binary_tree that provides the following APls: 1. binary_tree () creates and returns an empty binary tree. Each node of the binary tree should be created as an instance of the bt_node class, whose (partial/incomplete) implementation has been provided to you below. The root of the binary must be stored in an instance variable named root. When the tree is empty, the root value must be None. In addition, the bt_node class must support the == operation. 2. binary_tree.insert( self, item ) should unconditionally insert the provided item in the binary tree. This function should insert the new item into the first leftmost position available that is closest to the root of tree. Hint: Consider using iteration/looping to implement this functionality! Example: Consider the following code snippet that adds some values to the binary tree, b: b = binary_tree () for v in [4, 2, 4, 8, 1, 5]: # b.insert( v ) Once the root node with value 4 is inserted into the binary tree, we have both of root's children empty. Empty child node positions will be indicated wit x characters in the figures below. One node 4 becomes the root of the binary tree being built, we will have the following structure: (4) -+ X Since we need to insert 2 next, we need to attach a new bt_node with value 2 as the left child of 4, since that position is the first available leftmost position with respect to the root of the tree. So now the binary tree will look as follows: (4) X (2) | x To add the second 4 value, we need to determine to which x position this value will have to be attached according to the provided specifications. Going from the top to the bottom of the tree, the leftmost available position is the right child of the first 4 node. So we attach the second 4 there: | (2) 1 1 x x X The fourth value to be inserted into the binary tree is 8, and, obviously, the leftmost available position starting from the top of the tree is the left child of node 2. So this is where 8 is attached. | (2) (4) 1 (8) +--+--+ X X To add 1 next, we again need to decide which x position is the first leftmost available position if we start scanning the binary tree from the top/root the tree. Obviously, this position is the right child of node 2 . So this is where node 1 goes. (4) | +- + (2) 1 | +- | (1) X X 1 (9) +--+--+ 1 . x +--+--+ I 1 X x Finally, value 5 will be attached as the left child of the second 4 node, since that position is the leftmost available position closest to the root of the binary tree. | + . (2) 1 (4 +- + +- + 1 (8) +--+--+ 1 (5) 1 (1) +--+--+ 1 1 X X +--+--+ 1 1 X X X x This method ensures that we always keep what-is-called a complete binary tree. 3. Your implementation should support the in operator so that x in b where x is a value inserted into the binary_tree instance, b, using binary_tree.insert() method returns True . Similarly, e in b should return False if elemente is not in binary tree instance, b. 3. Your implementation should support the in operator so that x in b where x is a value inserted into the binary_tree instance, b, using binary_tree.insert() method returns True . Similarly, e in b should return False if element e is not in binary tree instance, b. 4. binary_tree. iter__( self ): returns an iterator for the binary tree. The iterator must return the items in breadth-first order, meaning the items must be returned from top to bottom, and left-to-right order. Therefore, the iterator should always return the root node first, then the left child of the root node followed by the right child of the root node, and this behavior should continue in the same manner for the remaining descendants of the root node. This iterator must be implemented in the class bt_iterator. See the incomplete definition for this class below. You must implement your entire code without using any external libraries/modules. In other words, your code should have absolutely no functioning import statements in it! That is, even if your code works perfectly with import statements despite this requirement, your grade for this exam will unfortunately be zero. The instructor will check for the use of import statements in your code in an automated fashion that you will not have access to. So please do not take a chance with this. You must keep the file magic directive at the top of the following code cell. Do not remove this directive, as it will lead to the automatic failure of all test cases, which themselves will cause you to get a zero grade, even if your program happens to satisfy the remaining specifications. Note that any deviation from any of these specifications will cost you points. Failure to abide by the strict programming rules mentioned here will result in zero grade automatically. For example, even if your code uses a single import statement, you will get a grade of zero for your work, and such a case will also be closed for any sort of appeal later! YOU MUST WRITE YOUR CODE IN THE FOLLOWING CODE CELL RUNNING THE FOLLOWING CELL WILL CREATE A FILE NAMED binary_tree.py ]: #+file binary_tree.py class bt_node: Defines a node in the binary tree def init ( self, value, left=None, right=None ): TIT self.value = value self.left = left self.right = right # YOUR CODE HERE raise Not ImplementedError() class bt_iterator: Iterator for a binary_tree instance # YOUR CODE HERE raise NotImplementedError() class binary_tree: Implements a binary tree def init ( self ): TTT! # YOUR CODE HERE raise Not ImplementedError() def insert ( self, value ): T 11 11 T! # YOUR CODE HERE raise NotImplementedError()

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_2

Step: 3

blur-text-image_3

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

Database Management System MCQs Multiple Choice Questions And Answers

Authors: Arshad Iqbal

1st Edition

1073328554, 978-1073328550

More Books

Students also viewed these Databases questions

Question

Create a workflow analysis.

Answered: 1 week ago

Question

18. If you have power, then people will dislike and fear you.

Answered: 1 week ago