Default Constructor
Now, let’s think about the implementation.
First, what should the constructor do?
initialize the data members
list::list() {
     my_list = NULL;
     video_list_size = 0;
     num_of_videos = 0;
}