Hello - I am wondering if its possible to create an array of linear linked lists, with each list being of a different node type?
This is for an assignment asking us to implement a sort of container object, that has three different lists of things in it, using an array of LLLs as the data structure. However, we have not gotten into dynamic binding or templates yet, so the only way I can see to have the nodes point to different class objs/data-types is three different node classes... which would require the array to have 3 different node pointers.