Monday 20 December 2010

Flow chart To perform the binary search operation

Description:

Binary search is a vast improvement over the sequential search. For binary
search to work, the item in the list must be in assorted order. The approach employed in the binary search is divid and conquer. If the list to be sorted for a specific item is not sorted, binary search fails.



  Output:

enter range for array:4
enter elements into array:12 23 34 45 
the search element:45
element 45 found at 4


enter range for array:5
enter elements into array:1 34 56 78 88 the search element:45
element 45 not found in array

Conclusion: the program is error free

More Explanation:

The search always needs to track three values – the midpoint, the first position in the scope and the last position in the scope.With each pass, the algorithm narrows the search scope by half. With each subsequent pass of the data, the algorithm re-calculates the midpoint and searches for the target. First, it searches for the target at the midpoint of the list. It can then determine if the target is in the first half of the list or the second, thus eliminating half of the values. The binary search divides the list into two halves. We should use the binary search on large lists (>50 elements) that are sorted.



VIVA QUESTIONS

1) Define Binary search ?
Ans: Binary search is a vast improvement over the sequential search. For binary search to work, the item in the list must be in assorted order. The approach employed in the binary search is divid and conquer. If the list to be sorted for a specific item is not sorted, binary search fails.
Data structures using Java

No comments:

Post a Comment