Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Python 3: Binary Search Tree Algorithm COPY PASTABLE CODE: paste.ee/p/TfzwW PROBLEM: Write a function binarySearch(self, elem) that takes in an element, elem , and returns

Python 3: Binary Search Tree Algorithm COPY PASTABLE CODE: paste.ee/p/TfzwW

PROBLEM: Write a function binarySearch(self, elem) that takes in an element, elem, and returns True if element is in BST and False otherwise.

This function should be a part of the BinaryTree class.

def binary_search(self, elem):

### your code here

return

Given that the tree is balanced, algorithm can find an element in the BST in big-Theta(log n)

The tree is only balanced if:

The left and right subtrees' heights differ by at most one, AND

The left subtree is balanced, AND

The right subtree is balanced image text in transcribed

BST algorithm steps.

Suppose I want to check if some element, toFind, is in my BST:

1. Start at the root and compare the values.

2. If they are the same, stop and return True

3. If toFind is larger than the root's value, go to the right subtree. Go to step 1.

4. If toFind is smaller then the root's value, go to the left subtree. Go to step 1.

5. Return False if reached the bottom of the tree (no children). image text in transcribed

There are algorithms that keep binary search trees balanced when one adds or removes elements but you do not have to worry about it yet.

Write a function binarySearch(self, elem) that takes in an element, elem, and returns True if element is in BST and False otherwise.

This function should be a part of the BinaryTree class.

Note: this algorithm works only if a given binary tree is a binary SEARCH tree. Therefore your method from problem 3.2 will be handy here.

Make sure that your string is correct and matches the expected output exactly.

Expected outputs: image text in transcribed

Balanced Binary Tree Unbalanced Binary Tree

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 Driven Web Sites

Authors: Mike Morrison, Joline Morrison

1st Edition

061901556X, 978-0619015565

More Books

Students also viewed these Databases questions