My professor provided me with a file called CursorList.cpp that implements a "Cursor Linked List". The problem is - I have no idea what that even is!
Could anybody give me the gist of it?
Thanks!
My professor provided me with a file called CursorList.cpp that implements a "Cursor Linked List". The problem is - I have no idea what that even is!
Could anybody give me the gist of it?
Thanks!
According to this, here is some background on a cursor linkedlist:
So basically a linked list that is implemented without using pointers. Maybe this implementation is supposed to be "easier" to understand?
My guess would be that it is a linked list that additionally keeps a pointer to a "current" element, for example for iterating over the list.
If you want to be sure what exactly your professor means by it, look at the .cpp file and find out what is implemented there.