下面我有一个代码片段,它封装了我遇到的问题。
我正在尝试做的事情在 R 中是微不足道的,但在 Rcpp 中要困难得多。我只是根据它们各自的键尝试聚合值。在这个例子中,我只是想得到与第一个键对应的值的总和。我在 C++ 中做了一些非常相似的事情,但出于某种原因,Rcpp 端口给了我一些问题。
另外,请注意,提供的代码仅代表我遇到的更大问题。所以我知道尝试单独在 Rcpp 中实现这一点并不是很好地利用时间。
#include <Rcpp.h>
using namespace Rcpp;
using namespace std;
// [[Rcpp::export]]
int mmap(List x) {
std::multimap<int, int> out;
for(int i = 0; i < x.size(); ++i) {
int key_temp = as<List>(as<List>(x[i]))[0];
int value_temp = as<List>(as<List>(x[i]))[1];
out.insert(make_pair(key_temp, value_temp));
}
pair<multimap<int, int>::iterator, multimap<int, int>::iterator> range = out.equal_range(1);
int total = accumulate(range.first, range.second, 0);
return total;
}
/*
xList <- list()
xList[[1]] <- list()
xList[[1]][1] <- 1
xList[[1]][2] <- 1
xList[[2]] <- list()
xList[[2]][1] <- 1
xList[[2]][2] <- 2
xList[[3]] <- list()
xList[[3]][1] <- 2
xList[[3]][2] <- 2
xList[[4]] <- list()
xList[[4]][1] <- 1
xList[[4]][2] <- 2
mmap(xList)
*/