
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | public class MyIntStack{ private final LinkedList fStack; public MyIntStack(){ fStack = new LinkedList(); } public int pop(){ return ((Integer) fStack.removeFirst()).intValue(); } public void push( int elem){ fStack.addFirst( new Integer(elem)); } public boolean isEmpty(){ return fStack.isEmpty(); } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | public class MyIntStack { private final LinkedList fStack; public MyIntStack() { fStack = new LinkedList(); } public int pop() { return ((Integer) fStack.removeFirst()).intValue(); } public void push( int elem) { fStack.addFirst( new Integer(elem)); } public boolean isEmpty() { return fStack.isEmpty(); } } |
Os getter e setters caso sejam gerados já ficarão no padrão configurado.
Testado para o Eclipse Luna SR2.
Ao som de Gabriel o Pensador, Deixa Quieto.
Comentários
Postar um comentário