Question: Draw a Flowchart for linear search algorithm using this code: If your array A has the following elements: 1, 2, 8, 6, 4, trace your

Draw a Flowchart for linear search algorithm using this code:

Draw a Flowchart for linear search algorithm using this code: If your If your array A has the following elements: 1, 2, 8, 6, 4, trace your algorithm in these three cases:

- Find the value 9 in an array A. (How many trials to find this value?)

- Find the value 1 in an array A. (How many trials to find this value?)

Find the value 6 in an array A. (How many trials to find this value?)

If the value is found, then:

- print out the following message "The element you are looking for is found", otherwise,

- print out the following message "Sorry, but the element you are looking for is not found"

Should you sort the array before searching?

Begin Variables i,x : integer, Find: boolean; i=0, Find = false, read: x; /N =number of elements in the arrosy While (i

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!