如何使用 nlohmann/json.hpp 序列化 2 组

how can I serialize 2 sets using nlohmann/json.hpp

我有两个使用 boost 哈希实现的无序对 (X,Y),我想将它们转换为具有特殊格式的 Json 文件。

unordered_set<pair<int,int>> visited, cleaned

。我希望它们以 Json 格式使用 nlohmann/json.hpp C++ 以这种方式表示:

{
  "visited": [
    {
      "X": 2,
      "Y": 2
    },
    {
      "X": 3,
      "Y": 0
    },
    {
      "X": 3,
      "Y": 1
    },
    {
      "X": 3,
      "Y": 2
    }
  ],
  "cleaned": [
    {
      "X": 2,
      "Y": 2
    },
    {
      "X": 3,
      "Y": 0
    },
    {
      "X": 3,
      "Y": 2
    }
  ],
}

谁能帮我写这部分的 C++ 代码? 我的代码是

for (auto it = visited.begin(); it != visited.end(); ++it)
    {
        j2["visited"]["X"]=it->second;
        j2["visited"]["Y"] = it->first;
    }   
    for (auto it = cleaned.begin(); it != cleaned.end(); ++it)
    {
        j2["cleaned"]["X"] = it->second;
        j2["cleaned"]["Y"] = it->first;
    }

它产生:

{
    "cleaned": {
        "X": 3,
        "Y": 2
    },
    "visited": {
        "X": 3,
        "Y": 2
    }
}

您想要的 JSON 格式包含数组。使用类似这样的东西来显式创建 他们:

nlohmann::json arr;
for (auto it = visited.begin(); it != visited.end(); ++it) {
    nlohmann::json o;
    o["X"] = it->second;
    o["Y"] = it->first;
    arr.push_back(o);
}

j2["visited"] = arr;

第二部分也类似。