📄 stackli.java
字号:
package DataStructures;
// StackLi class
//
// CONSTRUCTION: with no initializer
//
// ******************PUBLIC OPERATIONS*********************
// void push( x ) --> Insert x
// void pop( ) --> Remove most recently inserted item
// Object top( ) --> Return most recently inserted item
// Object topAndPop( ) --> Return and remove most recent item
// boolean isEmpty( ) --> Return true if empty; else false
// boolean isFull( ) --> Always returns false
// void makeEmpty( ) --> Remove all items
// ******************ERRORS********************************
// pop on empty stack
/**
* List-based implementation of the stack.
* @author Mark Allen Weiss
*/
public class StackLi
{
/**
* Construct the stack.
*/
public StackLi( )
{
topOfStack = null;
}
/**
* Test if the stack is logically full.
* @return false always, in this implementation.
*/
public boolean isFull( )
{
return false;
}
/**
* Test if the stack is logically empty.
* @return true if empty, false otherwise.
*/
public boolean isEmpty( )
{
return topOfStack == null;
}
/**
* Make the stack logically empty.
*/
public void makeEmpty( )
{
topOfStack = null;
}
/**
* Get the most recently inserted item in the stack.
* Does not alter the stack.
* @return the most recently inserted item in the stack, or null, if empty.
*/
public Object top( )
{
if( isEmpty( ) )
return null;
return topOfStack.element;
}
/**
* Remove the most recently inserted item from the stack.
* @exception Underflow if the stack is empty.
*/
public void pop( ) throws Underflow
{
if( isEmpty( ) )
throw new Underflow( );
topOfStack = topOfStack.next;
}
/**
* Return and remove the most recently inserted item from the stack.
* @return the most recently inserted item in the stack, or null, if empty.
*/
public Object topAndPop( )
{
if( isEmpty( ) )
return null;
Object topItem = topOfStack.element;
topOfStack = topOfStack.next;
return topItem;
}
/**
* Insert a new item into the stack.
* @param x the item to insert.
*/
public void push( Object x )
{
topOfStack = new ListNode( x, topOfStack );
}
private ListNode topOfStack;
public static void main( String [ ] args )
{
StackLi s = new StackLi( );
for( int i = 0; i < 10; i++ )
s.push( new MyInteger( i ) );
while( !s.isEmpty( ) )
System.out.println( s.topAndPop( ) );
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -