How can I create a list in C++? I need it to create a linked list. How would I go about doing that? Are there good tutorials or examples I could follow?
|
|
I take it that you know that C++ already has a linked list class, and you want to implement your own because you want to learn how to do it. First, read http://stackoverflow.com/questions/392397/arrays-whats-the-point , which contains a good answer of basic data-structures. Then think about how to model them in C++:
Basically that's all you need to implement a list! (a very simple one). Yet it has no abstractions, you have to link the items per hand:
Now, you have have a linked list of nodes, all allocated on the stack:
Next step is to write a wrapper class
Next step is to make the List a template, so that you can stuff other values (not only integers). If you are familiar with smart pointers, you can then replace the raw pointers used with smart pointers. Often i find people recommend smart pointers to starters. But in my opinion you should first understand why you need smart pointers, and then use them. But that requires that you need first understand raw pointers. Otherwise, you use some magic tool, without knowing why you need it. |
|||
|
|
|
You should really use the STL List class. Unless, of course, this is a homework question, or you want to know how lists are implemented by STL. You'll find plenty of simple tutorials via google, like this one. If you want to know how linked lists work "under the hood", try searching for C list examples/tutorials rather than C++. |
||||
|
|
|
If you are going to use std::list, you need to pass a type parameter: list<int> intList; If you want to know how lists work, I recommending googling for some C/C++ tutorials to gain an understanding of that subject. Next step would then be learning enough C++ to create a list class, and finally a list template class. If you have more questions, ask back here. |
|||
|
|
|
I'm guessing this is a homework question, so you probably want to go here. It has a tutorial explaining linked lists, gives good pseudocode and also has a C++ implementation you can download. I'd recommend reading through the explanation and understanding the pseudocode before blindly using the implementation. This is a topic that you really should understand in depth if you want to continue on in CS. |
|||
|
|
|
|
|||
|
|
|
Why reinvent the wheel. Just use the STL list container.
|
|||||||
|
|
We are already in 21st century!! Don't try to implement the already existing data structures. Try to use the existing data structures. Use STL or Boost library |
|||||||||
|