I want to implement a generic binary search algorithm .
Generic : The type can be strings , integers , characters etc .
So , i went through the website and saw implementation of binary_search .
My doubt :
1) How to use compare() function , when we don't know the type . I mean , that comparing strings require str.compare() , but integers can be compared using '>' or '<' .
2) I am always getting the output as in below code . Please explain why .
I have implemented the following (mainly copied from this site):
A binary search requires that the data being searched is sorted. (Your data is not sorted.)
Also, a search is not a predicate: it tells you where something is found in a sequence, not just membership. (Your function returns bool, when it should be returning an iterator.)
I haven't properly perused your algorithm, but I worry it might have an off-by-one access in there. Also, why is "lower_" doing the searching, and not "binary_srch"?