gpt4 book ai didi

c++ - 带有字符串或结构键的 std::map

转载 作者:行者123 更新时间:2023-11-30 03:18:35 25 4
gpt4 key购买 nike

我如何在 C++ 中内存映射结构或字符串类型键值的 std:map?这可能吗?现在我正在使用键值 int 的映射进行内存映射,但是由于 int 的最大范围有限并且我程序中键值的最大大小约为 10^24,所以我被卡住了。那么通过使用键类型作为结构或字符串我可以解决这个问题吗?

 int p0, p1, p2;
map<int,int> p0obj, p1obj, p2obj, size_p; int count = 0;

float d0, d1, d2;
float a0 = a[p0];
float b0 = b[p0];
float a1 = a[p1];
float b1 = b[p1];
float a2 = a[p2];
float b2 = b[p2];
if(d0>0 && d1>0 && d2>0) {
int key = d0+max_d*(d1+max_d*(d2+max_d*(a0+max_c*(b0+max_c*(a1+max_c*(b1+max_c*(a2+max_c*b2)))))));
//std::string key = std::to_string(k);
p0obj[key] = p0; p1obj[key] = p1; p2obj[key] = p2; size_p[key]++;
oa << p0obj; oa << p1obj; oa << p2obj; oa << size_p;
std::cout<<"key="<<key<<std::endl;
}
}
}

最佳答案

您似乎想使用一堆 float 作为映射中的键。

您可以通过将它们包装为 tuple 来实现或者定义一个更有意义的 struct 类型:

#include <map>

struct MyKey {
float d0, d1, d2, a0, b0, a1, b1, a2, b2;

bool operator < (const MyKey& o) const {
return std::tie(d0, d1, d2, a0, b0, a1, b1, a2, b2) < std::tie(o.d0, o.d1, o.d2, o.a0, o.b0, o.a1, o.b1, o.a2, o.b2);
}
};

struct MyValue {
float p0, p1, p2;
};

std::map<MyKey, MyValue> pobj;

要插入到这个 map 中:

    pobj.insert({{d0, d1, d2, a0, b0, a1, b1, a2, b2}, {p0, p1, p2}});

但不确定您将如何处理这样的 map 。按 float 搜索可能效果不佳。但是用例如查找子空间lower_bound可能仍然有用。

    auto it = pobj.lower_bound({d0, d1, d2, a0, b0, a1, b1, a2, b2});
if (it != end(pobj)) {
const MyKey& key = it->first;
const MyValue& value = it->second;
std::cout << "found: " << value.p0 << " " << value.p1 << " " << value.p2 << std::endl;
}

关于c++ - 带有字符串或结构键的 std::map,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54589044/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com