Can I have some idea's as to how to do that?
Like say you have a piece of code that created n lists that are linked. Then you ask which node would you like to change the data?
How would one do it?
My Idea was the node contains N and data.
We can have the N start out at one when it's created, then have the next node that' the first one is pointing to have thta N +1 making it 2.
Then have some number outside, compare iet to that N, if that matches, then pointer moves to that node and change the data?
I'm not sure if it's possible doing it this way though.