我是编程新手。最近我尝试使用c++ sort keeping track of indices
中的排序功能template <typename T>
std::vector<size_t> ordered(std::vector<T> const& values) {
std::vector<size_t> indices(values.size());
std::iota(begin(indices), end(indices), static_cast<size_t>(0));
std::sort(
begin(indices), end(indices),
[&](size_t a, size_t b) { return values[a] < values[b]; }
);
return indices;
}
在Xcode中,它成功编译时没有任何警告。在g ++中,它显示以下错误消息:
error: expected expression
[&](size_t a, size_t b) { return values[a] < values[b];}
^
这意味着什么?谢谢!
答案 0 :(得分:2)
begin
和end
位于std
命名空间中。你需要对它们进行限定:
std::sort(
std::begin(indices), std::end(indices),
[&](size_t a, size_t b) { return values[a] < values[b]; }
);
此外lambdas是C ++ 11的一项功能,因此您需要使用-std=c++11
进行编译才能使用它们。