Basically, yeah, everything as stated above. But I would like to do this without using the vector class.
Thanks in advance
|
Three steps:
Alternatively to steps 2 & 3, you could also dynamically enlarge your array or use a maximum size. Note that I'm intentionally not telling you how to do all this in order not to spoil you the learning experience. If you have concrete code, you are welcome to ask more specific questions though. |
|||
|
|
std::dequeand all the rest besidesstd::vector. I guess if it's just arrays, you can't. – chris Jan 31 at 18:53getlinewill help with the first part. If you're not allowed to use any standard containers for the second part, then it's time to drop down to C and use things likestrtokandrealloc. – Zack Jan 31 at 19:00