Reputation: 10944
I am trying to combine the following two functions into one portable function:
void NeedleUSsim::FindIdxRho()
{
searchTmp = &ninfo->rho;
double *p = std::find_if(tplRho_deg, tplRho_deg+sampleDim[2], &NeedleUSsim::GreaterThanOrEqualTo);
while(p != tplRho_deg+sampleDim[2])
{
idxRho = p - tplRho_deg;
p = std::find_if(p+1, tplRho_deg+sampleDim[2], &NeedleUSsim::GreaterThanOrEqualTo);
}
}
void NeedleUSsim::FindIdxDepth()
{
searchTmp = &ninfo->l;
double *p = std::find_if(tplL, tplL+sampleDim[1], &NeedleUSsim::LessThanOrEqualTo);
while(p != tplL+sampleDim[1])
{
idxL = p - tplL;
p = std::find_if(p+1, tplL+sampleDim[1], &NeedleUSsim::LessThanOrEqualTo);
}
}
Ideally, I want the parameters of the function to have tpl member to be passed as a pointer, with the size and rho/l passed as value. searchTmp is a file scope double precision pointer. Is there any easy way of passing &NeedleUSsim::GreaterThanOrEqualTo function as a parameter of the function that I'm trying to write easily?
Thanks in advance for the advice.
Upvotes: 5
Views: 704
Reputation: 16994
The simplest way to make your code a bit more generic is the following :
template<typename ComparisonType>
double* NeedleUSsim::FindIdx(double* containerBegin, double* containerEnd, ComparisonType comparison) {
double* p = std::find_if(containerBegin, containerEnd, comparison);
double* idx = 0;
while(p != containerEnd)
{
idx = p - containerBegin;
p = std::find_if(p+1, containerEnd, comparison);
}
return idx;
}
void NeedleUSsim::FindIdxRho()
{
searchTmp = &ninfo->rho;
double* idx = FindIdx(tplRho_deg, tplRho_deg+sampleDim[2], &NeedleUSsim::GreaterThanOrEqualTo);
if( idx != 0 )
{
idxL = idx;
}
}
void NeedleUSsim::FindIdxDepth()
{
searchTmp = &ninfo->l;
double* idx = FindIdx(tplL, tplL+sampleDim[1], &NeedleUSsim::LessThanOrEqualTo);
if( idx != 0 )
{
idxRho = idx;
}
}
Upvotes: 6
Reputation: 507005
double *p = std::find_if(b, e, &NeedleUSsim::GreaterThanOrEqualTo);
while(p != e)
{
idxRho = p - b;
p = std::find_if(p + 1, e, &NeedleUSsim::GreaterThanOrEqualTo);
}
Note that this loop that you use is not necessary. Use reverse iterators
std::reverse_iterator<double*> rb(e), re(b);
rb = std::find_if(rb, re, &NeedleUSsim::GreaterThanOrEqualTo);
if(rb != re) {
idxRho = re - rb;
}
Now its more obvious what it does. If writing to idxRho only when something was found was a mistake or doesn't matter, you can shorten it to this
std::reverse_iterator<double*> rb(e), re(b);
idxRho = re - std::find_if(rb, re, &NeedleUSsim::GreaterThanOrEqualTo);
Upvotes: 1
Reputation: 65609
Is there any easy way of passing &NeedleUSsim::GreaterThanOrEqualTo function as a parameter of the function that I'm trying to write easily?
There's a couple ways to do this.
The first method is covered above by eJames.
The second method involves wrapping your comparison functions in some function-object hierarchy. A function object is an instance of a class with the () operator overloaded. This makes the instance callable:
class IComparator
{
public:
virtual bool operator()(lhs, rhs) = 0;
}
class CComparatorLessThan : public IComparator
{
public:
virtual bool operator()(lhs, rhs) {...}
}
class CComparatorGreaterThan : public IComparator
{
public:
virtual bool operator()(lhs, rhs) {...}
}
Your common function would take an ICompatator reference and the behavior would be dynamically bound at runtime.
The third method involves templatizing instead of creating an object hierarchy
template <class Comparator>
void foo(...)
{
...
Comparator comparer;
std::find_if(..., comparer);
}
then calling foo would involve:
foo<CComparatorGreaterThan>(...);
This eliminates a lot of the runtime overhead of the second solution. Here you don't have to define the base class. You only have to have some kind of class that has operator() overloaded and will return bool.
Upvotes: 3
Reputation: 45493
The easy way to take functions and more complex parameters into a function is to template them (I'm guessing at some of the parameter types)
template <typename F>
void NeedleUSsim::FindIdx(double *ninfoMember, double *tplParam, size_t dimension, F CompareFunc, int &target)
{
searchTmp = ninfoMember;
double *p = std::find_if(tplParam, tplParam+sampleDim[dimension], CompareFunc);
while(p != tplParam+sampleDim[dimension])
{
target= p - tplParam;
p = std::find_if(p+1, tplParam+sampleDim[dimension], CompareFunc);
}
}
Then call it:
FindIdx(&ninfo->rho, tplRho_deg, 2, &NeedleUSsim::GreaterThanOrEqualTo, idxRho);
FindIdx(&ninfo->l, tplL, 1, &NeedleUSsim::LessThanOrEqualTo, idxL);
Upvotes: 1
Reputation: 119144
It is possible to pass a member function pointer to a function as follows:
typedef bool (NeedleUSsim::*compFunctionPtr)(NeedleUSsim &x, NeedleUSsim &y);
void NeedleUSsim::FindIdxRho(compFunctionPtr comparison)
{
//..
p = std::find_if(tplRho_deg, tplRho_deg+sampleDim[2], comparison);
//..
}
Which can then be called like so:
//..
someNeedleUSsim.FindIdxRho(&NeedleUSsim::LessThanOrEqualTo);
//..
Have a look at this C++ FAQ Lite article for more information.
Upvotes: 1