Ok so let's say we have a linked list of characters with a head pointer. How can I create a loop to enter a string of characters into the linked list? My problem is when I think of head and head->next and head->next->next . . . it only seems natural to use a recursive function to set the characters at each node.
|
It's trivial to do it with iteration. You would just start at head, and use a loop to iterate over the list by doing Basically something like:
|
|||||||||
|
|
As you are using C++, then using std::list and an iterator would seem to be the way to go. Writing your own linked list is OK as a learning exercise, but please don't use such a thing in real code. |
|||
|
|
|
Assuming your linked list already has enough space in it:
Otherwise you need to check each time for a null value before adding the data:
Another solution would involve adding a new element when you hit the end:
|
|||
|
|
|
First, it depends on whether it's a doubly-linked list, or a singly linked list -- but it sounds like you're dealing with a singly-linked list. With a singly linked list it's easiest to add nodes to the beginning of the list. If that works for you, something like:
If you want to add to the end of the list, you walk through the list first:
As a general rule, neither of these makes a lot of sense though. It's only really sensible to use a linked list when you plan on doing insertions and deletions somewhere in the middle of the list, and you normally save the position (i.e. a pointer to) where you're going to do the insertion or deletion. |
|||
|
|
