It is necessary to implement the “string queue” data structure in the form of a class (set of classes). Do not use the standard .NET collection classes, only use arrays as an internal structure for storing data.

To be honest, I still do not understand what is required of me. Thank you in advance

  • An array for the stack would fit, but for the FIFO queue it’s like oak. - cpp_user
  • You need to read about container types - list, queue, stack (list, queue, stack). - Igor
  • And arrays are not only static but also dynamic. - cpp_user
  • I still do not understand what is required of me - so check with the one who set you the task. and this person must be looked for clearly not on Stack Overflow in Russian . - aleksandr barakin
  • If this is a practical task, then explain what you are not satisfied with the standard containers (performance? Memory? Lack of features?). If the training, decide for yourself, we cannot learn to program for you. - VladD

0