Forum: C++ Mar 11th, 2009 |
| Replies: 2 Views: 213 oops, sorry about that, that was just an experiment. The line was supposed to read
vector<node*> children;
children is just the variable name of the vector of node*. It... |
Forum: C++ Mar 11th, 2009 |
| Replies: 2 Views: 213 I am making a word ladder and have gotten some headway on creating a tree design but for some reason in my insertion function I am getting an error saying that this is the "first use of this... |
Forum: C++ Nov 18th, 2008 |
| Replies: 6 Views: 368 i meant i created a vector of unspecified size. but when I reserve a spot then try to alter the instance an error pops up and I get a window telling me that the program has to close because it has... |
Forum: C++ Nov 18th, 2008 |
| Replies: 6 Views: 368 If you make a vector of a class of no designated size, as you reserve spaces inside the vector will it just make a default instance from the constructor? |