Search:

Type: Posts; User: grumpy

Search: Search took 0.06 seconds.

  1. Replies
    5
    Views
    950

    To you maybe, but that's because you care about...

    To you maybe, but that's because you care about how the LinkedList is implemented. Why should a user of your class need to know how it is implemented?

    Does the user of the LinkedList class even...
  2. Replies
    5
    Views
    950

    Typically, the template parameter will reflect...

    Typically, the template parameter will reflect what you want the nodes to to contain. So


    template<typename T> class Node
    {
    // whatever
    };

    template<typename T> class LinkedList
    {
Results 1 to 2 of 2