public SingleLinkedList(int value) { data = value; next = null; }
public SingleLinkedList() { data = 0; next = null; }