2nd assignment algorithm
2nd assignment algorithm
Group information
Name__________________________id
1.
2.
3.
4.
1. write a c++ program which can accept list of names from the user
and then search a particular name from the list by using binary
searching algorithm.
int main() {
std::vector<std::string> names;
int n;
std::string nameToSearch;
return 0;
}