javaman99
05-06-2002, 10:09 PM
vector<vector<Edge> > temp1(size);
this makes a vector which contains size vectors. The problem is the internal vectors are all of the defualt stl size. How would I properly make it so that the internal vectors are the same size as the one holding them, essentially creating a square matrix.
this makes a vector which contains size vectors. The problem is the internal vectors are all of the defualt stl size. How would I properly make it so that the internal vectors are the same size as the one holding them, essentially creating a square matrix.