Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This question is aboutSearching and Sorting. (a) Write a functionin Python, Binary Search, which takes as argument a Pythondictionary item_dic, target_item. You should sort thedictionary

This question is aboutSearching and Sorting.

(a) Write a functionin Python, Binary Search, which takes as argument a Pythondictionary item_dic, target_item. You should sort thedictionary by its keys into ascending order using the bubblesort algorithm and return a list of values which are correspondingto their keys’ order. And Binary search returns the index ofthe target_item. What is the best & worst-casetime complexity (in terms of Big O-notation) of the searchalgorithm?

  • For example, if the given item_dic, target_item: {3:”a”,13:”c”, 5: “b”, -5: “d”}, “b”

After Sorting, the function should return: [“d”, “a”,“b”, “c”]

After Searching, the function should return: 2

Note: You may assumethat the keys in the dictionary are of the same data type, and thevalue for each key in the dictionary is unique. The searchalgorithm is a combination of sorting and searching.

(b) Given thefollowing char_list = [“a”, “f”, “c”, “g”, “d”, “z”], what is theoutput (i.e., printing) at the end of each iteration for theInsertion sort Algorithm?

(a) def binary_search(item_dic, target_item):

#write your answer here

(b)

#write your answer here

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Global Strategy

Authors: Mike W. Peng

5th Edition

0357512367, 978-0357512364

Students also viewed these Programming questions

Question

In Exercises, find the limit. lim (4x- x 16x - x

Answered: 1 week ago

Question

=+a) Is this an experiment or an observational study? Explain.

Answered: 1 week ago

Question

What is one of the skills required for independent learning?Explain

Answered: 1 week ago

Question

Documentation of the appraisal activities

Answered: 1 week ago

Question

Personal knowledge of and contact with each appraised individual

Answered: 1 week ago