Need a bit of help with Link-list
I basically need help using a link-list to implement a certain number of strings, I would like each element to be link to the next node. so far I have:
Class ListNode
{
string x;
ListNode Next;
}
Class List
{
ListNode First;
}
That will take care of linking the nodes but i need guidance on where to go from here. Is link-list the way to go, how should I create a class to insert the strings?
More here:
Need a bit of help with Link-list
0 Comments
Feb
19
19