public DoubleLinkListNode(int value) { data = value; previous = null; next = null; }
public DoubleLinkListNode() { previous = null; next = null; }