比较没有成员作为唯一标识符的两个类实例

问题描述 投票:-2回答:1

考虑两个类,NodeEdge,分别代表多图的节点和边缘(参见下面的MWE代码)。我的意图是使用三个unordered_maps:

(a)从Node变量到Edge数据,

(b)从Edge变量到Node数据,和

(c)从Node对到double变量。

我试着为bool operator==()Node*编写Edge*函数,并为Node*Edge*pair<Node*,Node*>编写哈希函数。

我的第一个问题与bool operator==()Edge功能有关。虽然Nodes的标签肯定是唯一的,但这个bool operator==()函数对于具有相同starts和ends()的多个边缘是不正确的。有没有机会使用例如bool operator==()s的内存地址构造正确的Edge函数?

第二个问题是,如果仅假设简单边,这些函数是否导致仅保存不同的Node/Edge/pair<Node,Node>对象。

所以,我的MWE如下:

#include<string>
#include<vector>
#include<utility>
#include<unordered_map>
#include<iostream>
#include <bits/stdc++.h> 

using namespace std;


class Node
{
   public:
      Node(){};
      string label;
      bool operator==(const Node* other) const
      {return label == other->label;};
};

class Edge
{
   public:
      Edge(){};
      Node *start, *end;
      double weight;
      bool operator==(const Edge* other) const
      {return start->label == other->start->label && 
       end->label == other->end->label;};
      //{return this == *other;}
};

namespace std
{
   template <>
   struct hash<Node*>
   {
      size_t operator()(const Node* node) const
      {return hash<string>()(node->label);}
   };

   template <>
   struct hash<Edge*>
   {
      size_t operator()(const Edge* edge) const
      {
         auto hash1 = hash<Node*>()(edge->start);
         auto hash2 = hash<Node*>()(edge->end);
         return hash1 ^ hash2; 
      }
   };

   template <>
   struct hash<pair<Node*,Node*>>
   {
      size_t operator()(const pair<Node*, Node*>& p) const
      { 
          auto hash1 = hash<Node*>()(p.first); 
          auto hash2 = hash<Node*>()(p.second);
          return hash1 ^ hash2; 
      } 
   };
}; 

int main()
{
   Edge* edge;
   Node* node;

   unordered_map<Node*,Edge> n2e;
   unordered_map<Edge*,Node> e2n;
   unordered_map<pair<Node*,Node*>,double> np2w;

   edge = new Edge();
   edge->weight = 1.0;
   edge->start = new Node();
   edge->start->label = "A";
   edge->end = new Node();
   edge->end->label = "B";

   n2e[edge->start] = *edge;
   e2n[edge] = *(edge->start);
   np2w[make_pair(edge->start, edge->end)] = edge->weight;

   edge = &n2e[edge->start];
   node = &e2n[edge];

   return 0;
}
c++ hash comparison comparator comparison-operators
1个回答
0
投票

你大多定义operator==(const Edge&, const Edge*), 而你需要operator==(const Edge*, const Edge*),但后者无法定义。

你必须编写定义operator()(const Edge*, const Edge*) const的类并在std::unordered_map中提供它。

struct MyEdgeComp
{
    bool operator()(const Edge* lhs, const Edge* rhs) const {
        return *lhs == *rhs; // Assuming you implement it
    }
};

std::unordered_map<Edge*, Node, std::hash<Edge*>, MyEdgeComp> e2n;
© www.soinside.com 2019 - 2024. All rights reserved.