Stack.java 4.91 KB
Newer Older
1 2 3
/* Stack.java - Class that provides a Last In First Out (LIFO)
   datatype, known more commonly as a Stack
   Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.
Tom Tromey committed
4

5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA.

22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */
Tom Tromey committed
38 39 40 41 42 43 44 45 46


package java.util;

/* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
 * "The Java Language Specification", ISBN 0-201-63451-1
 * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
 * Status:  Believed complete and correct

47 48
/**
 * Stack provides a Last In First Out (LIFO) data type, commonly known
49 50 51
 * as a Stack.  Stack itself extends Vector and provides the additional
 * methods for stack manipulation (push, pop, peek). You can also seek for
 * the 1-based position of an element on the stack.
52 53
 *
 * @author Warren Levy <warrenl@cygnus.com>
54 55 56 57 58 59
 * @author Eric Blake <ebb9@email.byu.edu>
 * @see List
 * @see AbstractList
 * @see LinkedList
 * @since 1.0
 * @status updated to 1.4
60
 */
Tom Tromey committed
61 62
public class Stack extends Vector
{
63
  // We could use Vector methods internally for the following methods,
Tom Tromey committed
64 65 66
  // but have used Vector fields directly for efficiency (i.e. this
  // often reduces out duplicate bounds checking).

67 68 69
  /**
   * Compatible with JDK 1.0+.
   */
70 71 72 73 74 75
  private static final long serialVersionUID = 1224463164541339165L;

  /**
   * This constructor creates a new Stack, initially empty
   */
  public Stack()
Tom Tromey committed
76 77 78
  {
  }

79 80
  /**
   * Pushes an Object onto the top of the stack.  This method is effectively
81
   * the same as addElement(item).
82 83
   *
   * @param item the Object to push onto the stack
84 85
   * @return the Object pushed onto the stack
   * @see Vector#addElement(Object)
86 87
   */
  public Object push(Object item)
Tom Tromey committed
88
  {
89 90 91
    // When growing the Stack, use the Vector routines in case more
    // memory is needed.
    // Note: spec indicates that this method *always* returns obj passed in!
Tom Tromey committed
92

93 94
    addElement(item);
    return item;
Tom Tromey committed
95 96
  }

97 98
  /**
   * Pops an item from the stack and returns it.  The item popped is
99
   * removed from the Stack.
100
   *
101 102
   * @return the Object popped from the stack
   * @throws EmptyStackException if the stack is empty
103
   */
Tom Tromey committed
104 105 106 107 108
  public synchronized Object pop()
  {
    if (elementCount == 0)
      throw new EmptyStackException();

109
    modCount++;
Tom Tromey committed
110 111
    Object obj = elementData[--elementCount];

112
    // Set topmost element to null to assist the gc in cleanup.
Tom Tromey committed
113 114 115 116
    elementData[elementCount] = null;
    return obj;
  }

117
  /**
118
   * Returns the top Object on the stack without removing it.
119
   *
120 121
   * @return the top Object on the stack
   * @throws EmptyStackException if the stack is empty
122 123
   */
  public synchronized Object peek()
Tom Tromey committed
124
  {
125 126
    if (elementCount == 0)
      throw new EmptyStackException();
Tom Tromey committed
127

128
    return elementData[elementCount - 1];
Tom Tromey committed
129 130
  }

131
  /**
132
   * Tests if the stack is empty.
133
   *
134
   * @return true if the stack contains no items, false otherwise
135
   */
136
  public synchronized boolean empty()
Tom Tromey committed
137
  {
138 139
    return elementCount == 0;
  }
Tom Tromey committed
140

141 142 143
  /**
   * Returns the position of an Object on the stack, with the top
   * most Object being at position 1, and each Object deeper in the
144
   * stack at depth + 1.
145 146
   *
   * @param o The object to search for
147 148
   * @return The 1 based depth of the Object, or -1 if the Object
   *         is not on the stack
149 150 151
   */
  public synchronized int search(Object o)
  {
152 153 154
    int i = elementCount;
    while (--i >= 0)
      if (equals(o, elementData[i]))
155
        return elementCount - i;
Tom Tromey committed
156 157 158
    return -1;
  }
}