0
class Edge;
class Node
{
public:
Node(): distance(numeric_limits<double>::infinity()), visited(false) {}
Node(string a_id): distance(numeric_limits<double>::infinity()), visited(false), id(a_id) {}
bool operator==(const Node& p) {return p.id == id; }
string id;
double distance;
bool visited;
string previous;
vector<Edge*> edges;
};
class Edge
{
public:
Edge(double weight, string id)
{
this->weight = weight;
dest = new Node(id);
}
double weight;
Node * dest;
};
class Comparator {
public:
bool operator()(const Node* a, const Node* b)
{
return (a->distance > b->distance);
}
};
這些是我的課程。我從節點指針矢量創建了一個優先級隊列:指針C++的優先級隊列
priority_queue<Node*, vector<Node*>, Comparator > queue;
但是在一些操作之後,我得到了段錯誤。
queue.push(nodes[0]);
queue.pop();
queue.push(nodes[1]);
queue.push(nodes[4]);
queue.pop();
queue.push(nodes[3]);
queue.push(nodes[5]);
queue.pop();
queue.push(nodes[6]);
queue.push(nodes[7]);
nodes[6]->distance=1;
queue.pop();
在最後一行
queue.pop();
我得到一個分段錯誤,爲什麼它發生,我不明白這一點。提前致謝。
您不應該改變優先級隊列的內容。特別是不涉及確定元素之間相對優先級的任何事情。換句話說,不要這樣做:'節點[6] - >距離= 1;' – juanchopanza
分段錯誤通常是內存損壞,並且可能發生的問題遠離出現錯誤的地方。你的代碼在別處可能是錯的。 –
誰清理Node.edges? – JimR