我无法使用Rcpp
按升序排序:
NumericVector sortIt(NumericVector v){
std::sort(v.begin(), v.end());
return v;
}
尝试按降序排序:
NumericVector sortIt(NumericVector v){
std::sort(v.begin(), v.end(), std::greater<int>()); // does not work returns ascending
return v;
}
和
NumericVector sortIt(NumericVector v){
std::sort(numbers.rbegin(), numbers.rend()); // errors
return v;
}
答案 0 :(得分:3)
此功能后来added(Rcpp版本&gt; = 0.12.7)到Vector
成员函数sort
。这对于特别排序CharacterVector
对象(升序或降序)是必要的,因为基础元素类型需要特殊处理,并且与std::sort
+ std::greater
(以及某些其他STL)不兼容算法)。
#include <Rcpp.h>
// [[Rcpp::export]]
Rcpp::CharacterVector char_sort(Rcpp::CharacterVector x) {
Rcpp::CharacterVector res = Rcpp::clone(x);
res.sort(true);
return res;
}
// [[Rcpp::export]]
Rcpp::NumericVector dbl_sort(Rcpp::NumericVector x) {
Rcpp::NumericVector res = Rcpp::clone(x);
res.sort(true);
return res;
}
请注意使用clone
来避免修改输入向量。
char_sort(c("a", "c", "b", "d"))
# [1] "d" "c" "b" "a"
dbl_sort(rnorm(5))
# [1] 0.8822381 0.7735230 0.3879146 -0.1125308 -0.1929413
答案 1 :(得分:0)
这适用于我的装备。我不太明白为什么。也许比我更有资格的人可以准确地解释为什么这有效但其他配方失败了?
{{1}}