如何创建一个像这样的dinamic大小的数组:
int sentLen = sentences.size();
double a[sentLen][sentLen];
for (int i = 0; i < sentLen; i++)
{
for (int j = 0; j < sentLen; j++)
{
a[i][j] = somefunction(i, j);
}
}
我的研究使我malloc
不推荐或其他太复杂的方法。在我意识到大小必须不变后,我尝试使用unordered_map
,并尝试了以下内容:
std::unordered_map <int, int, double> a;
for (int i = 0; i < sentLen; i++)
{
for (int j = 0; j < sentLen; j++)
{
a.insert({ i, j, somefunc(i, j) });
}
}
但仍未成功。
答案 0 :(得分:1)
你真的不想使用数组。
std::vector<std::vector<double>> a{
sentLen, std::vector<double>{ sentLen, 0.0 } };
for (int i = 0; i < sentLen; ++i)
{
for (int j = 0; j < sentLen; ++j)
{
a[i][j] = somefunc(i, j);
}
}
答案 1 :(得分:1)
您收到错误是因为您无法将变量用作静态数组大小。它们必须在编译时知道。您必须动态分配或使用向量。