Please design a Python application that has an array of 20 integers. Use the Random( ) function to populate this array.  You may use random.randint().  Print out the array after fully populating it. You should use positive integers <100. The application must ask the user to  enter an integer value (Print out the value that the user chose.) and then check whether that value is one of the elements in the array. Three searches must be done: two sequential(one on the unsorted array and one on the sorted array) and one binary.  Print the array before each search. Develop separate sequential and binary search modules, both of which must keep a count of the number of comparisons it makes until it finds the value or determines that it is not in the array. Each module should report out whether or not the value has been found along with the number of comparisons made.  Develop a sort module. Develop a separate report module that prints the array and the output statement. You must have a main() function that populates the array, requests user input (you may have a separate module for this if you would like), prints or calls a module to print the initial array and calls search and report modules. e.g.  The value  (print value here) was found in (#comparisons) or The value was not found in (# comparisons). The application should be done in Python. Include but comment out the code you used to test your code.  (You must do some testing.) Use your module names and variables names to make things clear.

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

Please design a Python application that has an array of 20 integers. Use the Random( ) function to populate this array.  You may use random.randint().  Print out the array after fully populating it. You should use positive integers <100.

The application must ask the user to  enter an integer value (Print out the value that the user chose.) and then check whether that value is one of the elements in the array. Three searches must be done: two sequential(one on the unsorted array and one on the sorted array) and one binary.  Print the array before each search.

Develop separate sequential and binary search modules, both of which must keep a count of the number of comparisons it makes until it finds the value or determines that it is not in the array. Each module should report out whether or not the value has been found along with the number of comparisons made. 

Develop a sort module.

Develop a separate report module that prints the array and the output statement.

You must have a main() function that populates the array, requests user input (you may have a separate module for this if you would like), prints or calls a module to print the initial array and calls search and report modules.

e.g.  The value  (print value here) was found in (#comparisons) or The value was not found in (# comparisons).

The application should be done in Python.

Include but comment out the code you used to test your code.  (You must do some testing.)

Use your module names and variables names to make things clear.

AI-Generated Solution
AI-generated content may present inaccurate or offensive content that does not represent bartleby’s views.
steps

Unlock instant AI solutions

Tap the button
to generate a solution

Similar 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