I am getting a segmentation fault in my program and gdb tells me it is in this function on the line of
parent->getChildren().push_back(temp);
in
void Tree::add(Position& value, Node*& parent) {
Node* temp = new Node(value, parent);
parent->getChildren().push_back(temp);
}
I have added cout statements before that line and everything seems to be valid when the function is called. But I don't think my vector can be invalid? The vector declaration is here -
std::vector<Node*> children;
with getChildren() just returning std::vector&. Any help is appreciated.
Node constructor:
Tree::Node::Node(Position& v, Node*& p)
: value(v), parent(p), gvalue(0), hvalue(0), fvalue(0) {}
Node*& parentis what you want? – GWW Jun 28 '11 at 3:48parentis not getting deleted before you make this function call? – Als Jun 28 '11 at 3:52Node(value, parent)? – iammilind Jun 28 '11 at 3:54std::vector&? If it's allocated on the stack and a reference is returned, that could cause a segfault quite readily. – ildjarn Jun 28 '11 at 3:55getChildren()returns class data memberchildreninside the the whateverclassofparent, so it should be valid. – iammilind Jun 28 '11 at 3:56