Stack: Difference between revisions
(19 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
* [[Data Structures#Stack|Data Structures]] | * [[Data Structures#Stack|Data Structures]] | ||
* [[Queue#Overview|Queue]] | |||
* [[Deque]] | |||
=Overview= | =Overview= | ||
A '''stack''' is a [[Data_Structures#Dynamic_Set|dynamic set]] in which the the [[Data Structures#DELETE|DELETE]] operation, which does not have any argument, removes the most recently inserted element. The stack implements a | A '''stack''' is a [[Data_Structures#Dynamic_Set|dynamic set]] in which the the [[Data Structures#DELETE|DELETE]] operation, which does not have any argument, removes the most recently inserted element. The stack implements a Last-In-First-Out, or LIFO, policy. The [[Data Structures#INSERT|INSERT]] operation for a stack is called PUSH, and places the element at the top of the stack. The [[Data Structures#DELETE|DELETE]] operation is called POP. If the stack contains no elements it is said to be empty. If POP() operation is invoked on an empty stack, we say that the stack underflows. If PUSH() operation is called on a full stack, we say that the stack overflows. | ||
The stack is an essential component in implementing the [[Graph_Search#DFS_Iterative_Algorithm_Pseudocode|iterative Depth-First Search (DFS)]] algorithm in graphs. | |||
=Implementation= | =Implementation= | ||
The following code shows how to implement a simple stack of ints, backed by an integer array. | The following code shows how to implement a simple stack of ints, backed by an integer array. The stack capacity is dictated by the length of the array. | ||
[[File:StackWithArray.png]] | |||
<syntaxhighlight lang='java'> | <syntaxhighlight lang='java'> | ||
Line 22: | Line 26: | ||
// | // | ||
// 'top' indicates the first *free* location in storage. For an empty stack, top is 0 | // 'top' indicates the first *free* location in storage. | ||
// For an empty stack, top is 0 and for a full stack, | |||
// top is equal with storage.length | |||
// | // | ||
private int top; | private int top; | ||
Line 64: | Line 69: | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=Organizatorium= | |||
* https://github.com/jwasham/coding-interview-university#stack |
Latest revision as of 20:18, 3 November 2021
Internal
Overview
A stack is a dynamic set in which the the DELETE operation, which does not have any argument, removes the most recently inserted element. The stack implements a Last-In-First-Out, or LIFO, policy. The INSERT operation for a stack is called PUSH, and places the element at the top of the stack. The DELETE operation is called POP. If the stack contains no elements it is said to be empty. If POP() operation is invoked on an empty stack, we say that the stack underflows. If PUSH() operation is called on a full stack, we say that the stack overflows.
The stack is an essential component in implementing the iterative Depth-First Search (DFS) algorithm in graphs.
Implementation
The following code shows how to implement a simple stack of ints, backed by an integer array. The stack capacity is dictated by the length of the array.
/**
* A stack of ints.
*/
public class Stack {
private int[] storage;
//
// 'top' indicates the first *free* location in storage.
// For an empty stack, top is 0 and for a full stack,
// top is equal with storage.length
//
private int top;
public Stack(int capacity) {
this.storage = new int[capacity];
this.top = 0;
}
public void push(int i) throws StackOverflowException {
if (top == storage.length) {
throw new StackOverflowException();
}
storage[top ++] = i;
}
public int pop() throws StackUnderflowException {
if (top == 0) {
throw new StackUnderflowException();
}
return storage[-- top];
}
public boolean isEmpty() {
return top == 0;
}
public boolean isFull() {
return top == storage.length;
}
}