In C++, which method should have a string parameter for the name to search and a Hero reference parameter, loop over the heroes vector to try to find the hero, check if each hero name matches the parameter, set the Hero parameter to the found hero, break out of the loop, and return true if the hero is found, and return false if the hero is not found?
a) searchHero
b) findHero
c) getHero
d) locateHero