if head is null or this value < head value
this->next = head
head = this
if this value > tail value
tail->next = this
tail = this
else
loop through until you find where you...