Skip to content

Instantly share code, notes, and snippets.

@hazartilirot
Created January 31, 2012 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hazartilirot/a0ed02293679eebca78a to your computer and use it in GitHub Desktop.
Save hazartilirot/a0ed02293679eebca78a to your computer and use it in GitHub Desktop.
import java.util.LinkedList;
public class Stack<T> {
private LinkedList<T> storage = new LinkedList<T>();
public boolean empty() { return storage.isEmpty(); }
public void push(T t) { storage.addFirst(t); }
public T peek() { return storage.getFirst(); }
public T pop() { return storage.removeFirst(); }
public String toString() { return storage.toString(); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment