我有一个结构作为值类型的地图
map<int id, struct_t*> table
struct_t
{
int prev;
int wt;
string name;
}
仅使用 prev,我需要找到相应的 id。提前非常感谢!
编辑:
int key=0;
for(auto it = table.begin(); it != table.end(); ++it)
{
if(table[(*it).first].prev == ?)
}
这是我的地图数据的样子:
id prev abundance thing
1573 -1 0 book
1864 1573 39 beds
2075 1864 41 tray
1760 2075 46 cups
对于每个 id,我需要找到 NEXT 匹配的 id。因此,对于上一列中的 1573,我需要找到一个匹配的“id”,即 1864。此外,std::next 不起作用,因为数据集不一定在下一个元素中具有匹配的 id。希望这会有所帮助!
请帮帮我!!!我的老板已经对我花这么多时间学习 C++ 感到失望(已经 3 周了!)