The
Method Involve In Stack
Stack
class represents a last-in-first-out (LIFO) stack of objects. The usual push and pop operations are provided, as well as a method to peek at the top item on the stack, a method to test for whether the stack is empty, and a method to search the stack for an item and discover how far it is from the top.Method Involve In Stack
push()
pop()
peek() or top()
isEmpty()
search()
size()
[java]
Reference:
http://java.sun.com/j2se/1.4.2/docs/relnotes/devdocs-vs-specs.html
No comments:
Post a Comment