Excuse me, but:Originally posted by oktronic
First for kevin:
Check out the STL code Vector in the include directory. You will find that it is indeed a linked list.
This is in MS and SGI STLs.Code:std::vector<int> s(2); s[0]=129; s[1]=981218; int *arr=s.begin(); if(arr[1]==981218) // if this is safe cout << "definitely not a list";




Reply With Quote