Hello, I was given a task to implement a simply linked list on an array. I do not quite understand what is required of me. Implement stacks / decks / doubly-connected and single-linked lists / queues, etc. I can, operations to them, too, but using structures
struct list { string val = " "; list* next; } What should the implementation look like on an array?