DOC PREVIEW
Penn CIT 594 - Stacks

This preview shows page 1-2-24-25 out of 25 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 25 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 25 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 25 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 25 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 25 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

StacksWhat is a stack?Constructing a stackStack operations IStack operations IIStack ancestrySome uses of stacksA balancing actExpression evaluationPerforming calculationsExample: 1+2*3+4Handling parenthesesHandling variablesHandling the = operatorSome things that can go wrongStacks in JavaSupporting recursionFactorial (animation 1)Factorial (animation 2)Factorial (animation 3)Factorial (animation 4)Factorial (animation 5)Factorial (animation 6)SummaryThe EndStacks(Revised and expanded from CIT 591)What is a stack?•A stack is a Last In, First Out (LIFO) data structure•Anything added to the stack goes on the “top” of the stack•Anything removed from the stack is taken from the “top” of the stack•Things are removed in the reverse order from that in which they were insertedConstructing a stack•To use stacks, you need import java.util.*;•There is just one stack constructor: Stack stack = new Stack();Stack operations I stack.push(object)–Adds the object to the top of the stack; the item pushed is also returned as the value of push object = stack.pop();–Removes the object at the top of the stack and returns it object = stack.peek();–Returns the top object of the stack but does not remove it from the stackStack operations II stack.empty() –Returns true if there is nothing in the stack int i = stack.search(object);–Returns the 1-based position of the element on the stack. That is, the top element is at position 1, the next element is at position 2, and so on.–Returns -1 if the element is not on the stackStack ancestry•The Stack class extends the Vector class–Hence, anything you can do with a Vector, you can also do with a Stack–However, this is not how stacks are intended to be used–A “stack” is a very specific data structure, defined by the preceding operations; it just happens to be implemented by extending Vector–Use only the stack operations for Stacks!•The Vector class implements the Collection interface–Hence, anything you can do with a Collection, you can also do with a Stack–The most useful operation this gives you is toArray()Some uses of stacks•Stacks are used for:–Any sort of nesting (such as parentheses)–Evaluating arithmetic expressions (and other sorts of expression)–Implementing function or method calls–Keeping track of previous choices (as in backtracking)–Keeping track of choices yet to be made (as in creating a maze)A balancing act•([]({()}[()])) is balanced; ([]({()}[())]) is not•Simple counting is not enough to check balance•You can do it with a stack: going left to right,–If you see a (, [, or {, push it on the stack–If you see a ), ], or }, pop the stack and check whether you got the corresponding (, [, or {–When you reach the end, check that the stack is emptyExpression evaluation•Almost all higher-level languages let you evaluate expressions, such as 3*x+y or m=m+1•The simplest case of an expression is one number (such as 3) or one variable name (such as x)–These are expressions•In many languages, = is considered to be an operator–Its value is (typically) the value of the left-hand side, after the assignment has occurred•Situations sometimes arise where you want to evaluate expressions yourself, without benefit of a compilerPerforming calculations•To evaluate an expression, such as 1+2*3+4, you need two stacks: one for operands (numbers), the other for operators: going left to right,–If you see a number, push it on the number stack–If you see an operator,•While the top of the operator stack holds an operator of equal or higher precedence:–pop the old operator–pop the top two values from the number stack and apply the old operator to them– push the result on the number stack•push the new operator on the operator stack–At the end, perform any remaining operationsExample: 1+2*3+4•1 : push 1 on number stack•+ : push + on op stack•2 : push 2 on number stack•* : because * has higher precedence than +, push * onto op stack•3 : push 3 onto number stack•+ : because + has lower precedence than *:– pop 3, 2, and *–compute 2*3=6, and push 6 onto number stack–push + onto op stack•4 : push 4 onto number stack•end : pop 4, 6 and +, compute 6+4=10, push 10; pop 10, 1, and +, compute 1+10=11, push 11•11 (at the top of the stack) is the answerHandling parentheses•When you see a left parenthesis, (, treat it as a low-priority operator, and just put it on the operator stack•When you see a right parenthesis , ), perform all the operations on the operator stack until you reach the corresponding left parenthesis; then remove the left parenthesisHandling variables•There are two ways to handle variables in an expression:–When you encounter the variable, look up its value, and put its value on the operand (number) stack•This simplifies working with the stack, since everything on it is a number–When you encounter a variable, put the variable itself on the stack; only look up its value later, when you need it•This allows you to have embedded assignments, such as 12 + (x = 5) * xHandling the = operator•The assignment operator is just another operator–It has a lower precedence than the arithmetic operators–It should have a higher precedence than (•To evaluate the = operator:–Evaluate the right-hand side (this will already have been done, if = has a low precedence)–Store the value of the right-hand side into the variable on the left-hand side•You can only do this if your stack contains variables as well as numbers–Push the value onto the stackSome things that can go wrong•The expression may be ill-formed: 2 + 3 +•When you go to evaluate the second +, there won’t be two numbers on the stack 1 2 + 3•When you are done evaluating the expression, you have more than one number on the stack (2 + 3•You have an unmatched ( on the stack 2 + 3)•You can’t find a matching ( on the stack•The expression may use a variable that has not been assigned a valueStacks in Java•Stacks are used for local variables (including parameters)void methodA() { int x, y; // puts x, y on stack y = 0; methodB(); y++;}void methodB() { int y, z; // puts y, z on stack y = 5; return; // removes y, z}xyyzSupporting recursion static int factorial(int n) { if (n <= 1) return 1; else return n * factorial(n - 1);}•If you call x = factorial(3), this enters the factorial method with n=3 on the stack•| factorial calls itself, putting


View Full Document

Penn CIT 594 - Stacks

Documents in this Course
Trees

Trees

17 pages

Searching

Searching

24 pages

Pruning

Pruning

11 pages

Arrays

Arrays

17 pages

Stacks

Stacks

30 pages

Recursion

Recursion

25 pages

Hashing

Hashing

24 pages

Recursion

Recursion

24 pages

Graphs

Graphs

25 pages

Storage

Storage

37 pages

Trees

Trees

21 pages

Arrays

Arrays

24 pages

Hashing

Hashing

24 pages

Recursion

Recursion

25 pages

Graphs

Graphs

23 pages

Graphs

Graphs

25 pages

Recursion

Recursion

25 pages

Quicksort

Quicksort

21 pages

Quicksort

Quicksort

21 pages

Graphs

Graphs

25 pages

Recursion

Recursion

25 pages

Searching

Searching

24 pages

Counting

Counting

20 pages

HTML

HTML

18 pages

Recursion

Recursion

24 pages

Pruning

Pruning

11 pages

Graphs

Graphs

25 pages

Load more
Download Stacks
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Stacks and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Stacks 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?