public LLNode(int d) { data = d; next = null; }
public LLNode getLastNode(LLNode head) { return(last); }