public LinkedList()
 {
     root  = null;
     last  = null;
     Count = 0;
 }