Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 357 Bytes

README.md

File metadata and controls

5 lines (4 loc) · 357 Bytes

generic_type_binary_search

C++ program that searches a value into a given vector
It's called "generalized" due to the use of C++ templates throughout the code, which give you the choice over the data type of both the element to search and the vector, thus generalizing the algorithm for different data types (int, long int, float, double and char).