public void push(int d) { Node t = new Node(d); t.next = top; top = t; }
public int? pop() { if (top != null) { int item = top.data; top = top.next; return item; } return null; }