Complete the Size() function

The Size() function should return the number of elements in the list, not including the dummy node.

Follow these steps:

  1. In List.cpp, edit List::Size() near the bottom of the file.
  2. Write a while loop that traverses the linked list with a current pointer, as in other class functions. Keep track of how many nodes have been visited with a counter, then return that counter.