Peer-reviewed code snippets that anyone can edit
A wiki for useful code snippets
Template Linked List With Iterators
r3 r4
17
17
 
18
18
//We want the LinkedList Class to work for multiple different types of objects...
19
19
//So we will create a template
20
20
template <typename T>
21
[/code][http://www.resumesplanet.com/resume_writing.php  resume writing]
22
21
class LinkedList {
23
22
    //This will simplify things when we need to refer to the current class's type...
24
23
    typedef LinkedList<T> _ThisType;
25
24
   
Tags added:
Tags removed: