I have a C++ class but I'm also using some low level C and need to use the bsearch
function. The last argument of bsearch
is a comparison function, and I want to implement said function in a way that will allow it to access const private variables of the class.
The problem is that if I make the comparison function a member function it will not work, because it won't be a convertible to a regular function pointer. If I make a non member function I can pass that to bsearch
, but would not able to access private variables of the class.
What to do?
3 means there are 3 elements.16,32,56 are offset bytes.I need bsearch to search for actors.I'm searching in the offset array.I need a comparison function which would compare actors but i laso need const void * actorFile pointer to compute the locations in the comparison function.actorFIle is class private variable.
The solution is to forgo the C library function, and use C++ as it's meant to be used. The C++ standard library also has a utility search function, it's called
std::lower_bound
. And it accepts general function-like objects, not just regular function pointers.This allows you to call it with a lambda expression that captures your class: