Я написал следующий фрагмент тестового кода.Функциональность этого сегмента кода состоит в том, чтобы находить самую длинную непрерывную последовательность из заданного набора цифр.Я использую рекурсивную лямбда-реализацию (std::function
) в части логики обработки, связанной с сортировкой vector<pair<int,int>>
.
#include <iostream>
#include <vector>
#include <functional>
#include <utility>
#include <string>
using std::vector;
using std::function;
using std::swap;
using std::pair;
using std::make_pair;
using std::string;
using std::cout;
using std::endl;
int main (void){
auto func_obj1 = [&](const string& r, int buffer)->int{
function<void(vector<pair<int,int>>::iterator&, vector<pair<int,int>>::iterator&)> func_obj3 = [&](auto begin, auto end){
if(begin == end){
return;
}
auto tempb = begin;
auto tempe = end - 1;
while(tempb != end){
if((*tempb).second > (*tempe).second){
swap(*tempb, *tempe);
}
}
end = tempe;
func_obj3(begin, end);
};
auto func_obj2 = [&](vector<pair<int,int>>& r)->int{
func_obj3(r.begin(), r.end());
auto iter = r.begin();
auto count = 0;
auto max_count = 0;
while(iter != r.end()){
auto temp = iter + 1;
if((*iter).second + 1 == (*temp).second){
++count;
if(count > max_count){
max_count = count;
}
}
else{
count = 0;
}
++iter;
}
return max_count;
};
vector<pair<int,int>> v;
auto sws = ' ';
auto iter = r.begin();
auto count = 0;
while(iter != r.end()){
if(*iter == sws){
continue;
}
else{
v.push_back(make_pair(count, *iter));
++count;
}
++iter;
}
auto result = func_obj2(v);
return result;
};
string s = "1 9 2 7 3 8 4 ";
auto result = func_obj1(s, s.size());
cout << result << endl;
return 0;
}
Код не компилируется:
g++ -ggdb -std=c++14 -Wall code.cpp
code.cpp:35:5: error: no matching function for call to object of type 'function<void (vector<pair<int, int> >::iterator &, vector<pair<int, int> >::iterator &)>' (aka 'function<void (__wrap_iter<std::__1::pair<int, int> *> &, __wrap_iter<std::__1::pair<int, int> *> &)>')
func_obj3(r.begin(), r.end());
^~~~~~~~~
/Library/Developer/CommandLineTools/usr/include/c++/v1/functional:1677:9: note: candidate function not viable: expects an l-value for 1st argument
_Rp operator()(_ArgTypes...) const;
^
1 error generated.
Может кто-нибудь посоветовать, как это исправить?
TIA
Vinod