The code for the default LinkedList<T> constructor is given in Program . This routine simply constructs the representation of an empty linked list as shown in Figure (b). I.e., both the head and tail pointers are set to zero. The running time of the default constructor is clearly constant. I.e., T(n)=O(1).
Program: LinkedList<T> Class Default Constructor Definition