0
votes
Do you read books about programming (a lot) ?
I usually take in a couple programming books per year, although I read a lot of "how to" type of stuff on the Internet. For example I'm learning Windows Power Shell right now, will probably become …
3
votes
linked list
Arguably you want your list data structure to be external to the data that it stores.
Say you have:
struct Whatever
{
int x_;
}
Then your list structure would look …
