PROBLEM STATEMENT
Write a C program to implement Binary Search Algorithm.
Include a function
int BinarySearch (int, int, int *, int x) --- The 1st parameter is the lower limit of the list or array, the 2nd parameter is the upper limit of the list or array, the third parameter is a pointer to the array and the fourth parameter is the search element.
Please note that the index of the search element is returned by the function. If the search element is not present in the array, -1 is returned.
Assume that the maximum size of the array is 10 . Please note that if a is the array, then a[0] is in position 0, a[1] is in position 1 ...
Input and Output Format:
Refer sample input and output for formatting specifications.
Sample Input and Output 1:
[All text in bold corresponds to input and the rest corresponds to output.]
Enter the number of elements :
5
Enter the elements :
12
16
23
45
67
Enter the element to be searched :
23
The element 23 is in position 2
5
Enter the elements :
12
16
23
45
67
Enter the element to be searched :
23
The element 23 is in position 2
Sample Input and Output 2:
[All text in bold corresponds to input and the rest corresponds to output.]
Enter the number of elements :
5
Enter the elements :
12
16
23
45
67
Enter the element to be searched :
28
The element 28 is not present in the array
5
Enter the elements :
12
16
23
45
67
Enter the element to be searched :
28
The element 28 is not present in the array
SOLUTION
Here is the program to solve, if you don't understand any part, feel free to ask in comments.
compilation error in line 9,13,14
ReplyDeleteDon't forget to comment the comments with '//'.
DeleteThe code is working correctly. Please check for import files and comments.