Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Test the program for array sizes N = 16, 32, 64, 128, 256, 512, 1024, 2048, , 225. Initialize the array with random numbers between

Test the program for array sizes N = 16, 32, 64, 128, 256, 512, 1024, 2048, ……, 225. Initialize the array with random numbers between the ranges 1 through N and use the same array for testing linear search and binary search. Remember to sort the array before using binary search. Use a text file with 1,000 random numbers in the range 1 through 225 as the search keys.

Compare the execution time for linear search and binary search. Include the time taken for sorting with the binary search time (you have to sort only once for each array size). Use a table or plot to summarize the results and document your observations and explanations in the report.

Linear Serch (Python)

def linSearch(array, number):
    for x in range(0, len(array)):
        if number==array[x]:
            print(str(number) + " was found here at " + str(x))
           
sample_array = [6,9,8,10,7]
test = linSearch(sample_array, 7)
print(test)

 

Binary Search (Python)

def binSearch(sorted_array, number, min=0, max=None):
    max = max or len(sorted_array)-1
    if max < min:
        return False
    else:
        mid = min+ (max-min)/2
        mid1 = int(mid)
        if mid>number:
            return binSearch(sorted_array, number, min,
mid1-1)
        elif mid            return binSearch(sorted_array, number,
mid1+1, max)
        else:
            return mid1
           
           
           
sample_array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
print((binSearch(sample_array, 9)) -1)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

Code in python import random import time def linearsearcharrk for i in rangelenarr if arrik return ... 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

Document Format ( 2 attachments)

PDF file Icon
635e069e221ca_180832.pdf

180 KBs PDF File

Word file Icon
635e069e221ca_180832.docx

120 KBs Word File

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

Applied Statistics In Business And Economics

Authors: David Doane, Lori Seward

4th Edition

73521485, 978-0073521480

More Books

Students also viewed these Algorithms questions

Question

Explain why psychologists sometimes use animals in their research.

Answered: 1 week ago