Question

In: Computer Science

IN C++ Write a program to find the number of comparisons using binarySearch and the sequential...

IN C++

Write a program to find the number of comparisons using binarySearch and the sequential search algorithm as follows:
Suppose list is an array of 1000 elements.

3 Search list for some items as follows:
a. Use the binary search algorithm to search the list. (You may need to modify the algorithm given in this chapter to count the number of comparisons.)
b. Use the binary search algorithm to search the list, switching to a sequentialsearch when the size of the search list reduces to less than 15. (Use the sequential search algorithm for a sorted list.)
Print the number of comparisons for Questions 3a and b. If the item is found in the list, then print its position.

Solutions

Expert Solution

a.

#include <iostream>

using namespace std;

//binary search algorithm
int binarySearch(int arr[], int min, int max, int target)
{
//in every recursive call we are comparing the element three time
//compare one
  
if (max >= min)
{
//Compute guess as the average of max and min
int guess = (max+min)/2;

//compare two
if (arr[guess] == target)
{

  cout<<endl<<"The item found at location: "<<guess<<endl;
return guess;
}
  
//compare three
if (arr[guess] > target)
return 3+binarySearch(arr, min, guess - 1, target);

return 3+ binarySearch(arr, guess + 1, max, target);
}
  
return 1;
}

//function to sort an array
void bubbleSort(int a[], int size)
{
//outer for loop
for(int i=0;i<size;i++)
{
//inner for loop
for (int j=0;j<size;j++)
{
if(a[i]<a[j])
{
//swap the values
int temp = a[i];
a[i]=a[j];
a[j] = temp;
}
}
}
}

int main()
{
//array declaration
int arr[1000];
  
//fill array with random number
for(int i=0; i<1000; i++)
{
//fill with random number
arr[i] = rand()%1000;
}
  
//method calling
bubbleSort(arr,1000);
  
//display the result
cout<<endl<<"The number of comparison in binary search = "<<binarySearch(arr,0, 1000, 800);
  
return 0;
}

OUTPUT:

The number of comparison in binary search = 31

b.

#include <iostream>

using namespace std;

//function to find an element using sequential search
int sequentialSearch(int arr[], int size, int target)
{
int countNumCom = 0;
for(int i=0; i<size; i++)
{
countNumCom++;
if(arr[i] == target)

{

  cout<<endl<<"The item found at location: "<<i<<endl;
return i;

}
}
  
return countNumCom;
}

//binary search algorithm
int binarySearch(int arr[], int min, int max, int target)
{
//in every recursive call we are comparing the element three time
//compare one
  
//if the size of the array is less than 15 then sequential search
if((max-min) <15)
{
int smallArr[max-min];
for(int i=0; i<(max-min); i++)
smallArr[i] = arr[min++];
  
int count = sequentialSearch(smallArr, (max-min), target);
  
return count;
}
if (max >= min)
{
//Compute guess as the average of max and min
int guess = (max+min)/2;

//compare two
if (arr[guess] == target)
{

  cout<<endl<<"The item found at location: "<<guess<<endl;
return guess;
}
  
//compare three
if (arr[guess] > target)
return 3+binarySearch(arr, min, guess - 1, target);

return 3+ binarySearch(arr, guess + 1, max, target);
}
  
return 1;
}

//function to sort an array
void bubbleSort(int a[], int size)
{
//outer for loop
for(int i=0;i<size;i++)
{
//inner for loop
for (int j=0;j<size;j++)
{
if(a[i]<a[j])
{
//swap the values
int temp = a[i];
a[i]=a[j];
a[j] = temp;
}
}
}
}

int main()
{
//array declaration
int arr[1000];
  
//fill array with random number
for(int i=0; i<1000; i++)
{
//fill with random number
arr[i] = rand()%1000;
}
  
//method calling
bubbleSort(arr,1000);
  
//display the result
cout<<"The number of comparison in sequential search = "<<sequentialSearch(arr, 1000, 800);
cout<<endl<<"The number of comparison in binary search = "<<binarySearch(arr,0, 1000, 800);
return 0;
}

OUTPUT:

The number of comparison in sequential search = 1000
The number of comparison in binary search = 25


Related Solutions

IN C++ Write a program to find the number of comparisons using binarySearch and the sequential...
IN C++ Write a program to find the number of comparisons using binarySearch and the sequential search algorithm as follows: Suppose list is an array of 1000 elements. 2 Use any sorting algorithm to sort list.
In C++ Write a program to find the number of comparisons using binarySearch and the sequential...
In C++ Write a program to find the number of comparisons using binarySearch and the sequential search algorithm as follows: Suppose list is an array of 1000 elements. 5.1 Use a random number generator to fill list.
Question 5 Write a program to find the number of comparisons using binarySearch and the sequential...
Question 5 Write a program to find the number of comparisons using binarySearch and the sequential search algorithm as follows: Suppose list is an array of 1000 elements. 5.1 Use a random number generator to fill list. 5.2 Use any sorting algorithm to sort list. 5.3 Search list for some items as follows: a. Use the binary search algorithm to search the list. (You may need to modify the algorithm given in this chapter to count the number of comparisons.)...
In JAVA!!! write a method called Comparisons that will return the number of comparisons to find...
In JAVA!!! write a method called Comparisons that will return the number of comparisons to find an element in the tree. The main program calls this method for each element, adding the comparisons each time in order to count the total number of comparisons. The program then outputs the total number of comparisons and the average number. You may use the program BuildTreeWIthMethod to build your tree. Then, after you have made the call to inOrder(root), add the following code:...
write a method called Comparisons that will return the number of comparisons to find an element...
write a method called Comparisons that will return the number of comparisons to find an element in the tree. The main program calls this method for each element, adding the comparisons each time in order to count the total number of comparisons. The program then outputs the total number of comparisons and the average number. You may use the program BuildTreeWIthMethod to build your tree. Then, after you have made the call to inOrder(root), add the following code: int totalComparisons=0;...
write C++ program using functions (separate function for each bottom) Write a program to find if...
write C++ program using functions (separate function for each bottom) Write a program to find if a number is large word for two given bottom base - bottom1 and bottom2. You can predict that a number, when converted to any given base shall not exceed 10 digits. . the program should ask from user to enter a number that it should ask to enter the base ranging from 2 to 16 after that it should check if the number is...
Write a C++ program to find the number of pairs of integers in a given array...
Write a C++ program to find the number of pairs of integers in a given array of integers whose sum is equal to a specified number.
• Write a C++ program to find the largest umber, smallest number and sum of all...
• Write a C++ program to find the largest umber, smallest number and sum of all the element of a given array of 20 integers • Note − Declare array to 20 numbers − Input values for 20 array elements − Find largest number − Find smallest number − Find sum of all numbers • Display the results
Write a C program to find out the number of words in an input text file...
Write a C program to find out the number of words in an input text file (in.txt). Also, make a copy of the input file. Solve in C programming.
Using C++ Write a program to compute the number of collisions required in a long random...
Using C++ Write a program to compute the number of collisions required in a long random sequence of insertions using linear probing, quadratic probing, and double hashing.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT