constructor(data: Array<T> = []) {
        this.head = null;
        this.tail = null;
        this.size = 0;