public LinkList(LinkNode <T> head)
 {
     Head = head;
 }
 public LinkNode(T t, LinkNode <T> next)
 {
     Data = t;
     Next = next;
 }