在过去的两三个小时里,我一直在努力解决这个问题,但没有任何运气。我正在阅读文本,然后尝试创建一个邻接列表,其中所有顶点都具有指向列表中相邻顶点的链接。顶点类如下所示:
class Vertex {
private:
std::vector<Vertex*> connPtrVertices; // vector of vertices adjacent to this one
public:
void addVertex(Vertex* vert) { connPtrVertices.push_back(vert); }
在 main.cpp 中,我试图将顶点相互连接起来,如下所示:
Vertex *v1, *v2;
v2->addVertex(v1); // connect v2 to v1
v1->addVertex(v2); // connect v1 to v2
我收到一条 Debug Assertion Failed 消息,它是:
Debug Assertion Failed!
Program: C:\Windows\system32\MSVCP110D.dll
File: c:\program files (x86)\microsoft visual studio 11.0\vc\include\vector
Line: 240
Expression: vector iterators incompatible
我不知道该怎么做,任何帮助将不胜感激。
编辑:第一次通过循环,我用 new 分配 v1 和 v2,但第二次我检查它们是否存在,如果它们存在,我分配一个指向 Vertex 的指针,如下所示:
v1 = &(p_graph->getVertex(vert1));
调用的方法是这样的:
Vertex Graph::getVertex(std::string v) { // gets the vertex
for (std::vector<Vertex>::iterator it = vertices.begin(); it != vertices.end(); it++) {
if ((it->getName()).compare(v) == 0)
return *it; // if strings are the same return vertex
}
exit(1);
}
这是错误的地方吗?