data structures & algorithm analysis · pdf fileprefix expression postfix expression . ......

Post on 12-Mar-2018

235 Views

Category:

Documents

5 Downloads

Preview:

Click to see full reader

TRANSCRIPT

Data Structures & Algorithm Analysis

Lec(3) Stacks

Lecturer: Souad Alonazi

What is a stack?

Stores a set of elements in a particular order

Stack principle: LAST IN FIRST OUT

= LIFO

It means: the last element inserted is the first one to be removed

Example

Which is the first element to pick up?

What are stacks

3

Computer stack

Top

Stack of dishes Stack of books Stack of coins

Last In First Out

B

A

D

C

B

A

C

B

A

D

C

B

A

E

D

C

B

A top top

top

top top

A

Stack Applications

Real life

Pile of books

Plate trays

The Towers of Hanoi

More applications related to computer science

Program execution stack (read more from your text)

Evaluating expressions

Evaluation of Expressions

Expression Representation Techniques :

Infix

Prefix Expression

Postfix Expression

From Postfix to Answer

Computer System Uses Postfix form to represent expression.

The reason to convert infix to postfix

expression is that we can compute the answer

of postfix expression easier by using a stack.

Following is the example that shows evaluation of the Postfix expression using stack as data structure.

From Postfix to Answer

Ex: 10 2 8 * + 3 -

• First, push(10) into the stack

10

From Postfix to Answer

Ex: 10 2 8 * + 3 -

• Then, push(2) into the stack

2

10

From Postfix to Answer

Ex: 10 2 8 * + 3 -

• Push(8) into the stack

8

2

10

From Postfix to Answer

Ex: 10 2 8 * + 3 -

• Now we see an operator *, that means we can get an new number by calculation

8

2

10

From Postfix to Answer

Ex: 10 2 8 * + 3 -

• Now we see an operator *, that means we can get an new number by calculation

• Pop the first two numbers 8

2

10

8 2 * = 16

From Postfix to Answer

Ex: 10 2 8 * + 3 -

• Now we see an operator *, that means we can get an new number by calculation • Push the new number back

16

10

8 2 * = 16

From Postfix to Answer

Ex: 10 2 8 * + 3 -

• Then we see the next operator + and perform the calculation

16

10

26 10 + + 16 =

From Postfix to Answer

Ex: 10 2 8 * + 3 -

• Then we see the next operator + and perform the calculation • Push the new number back

26

10 + 16 = 26

From Postfix to Answer

Ex: 10 2 8 * + 3 -

• We see the next number 3

• Push (3) into the stack

3

26

Compute the Answer

Ex: 10 2 8 * + 3 -

• The last operation

3 26 - = 23

From Postfix to Answer

Ex: 10 2 8 * + 3 -

• The last operation

answer! 23

3 26 - = 23

From Postfix to Answer

• Algorithm: maintain a stack and scan the postfix expression from left to right – If the element is a number, push it into the

stack

– If the element is a operator O, pop twice and get A and B respectively. Calculate BOA and push it back to the stack

– When the expression is ended, the number in the stack is the final answer

Transform Infix to Postfix

• Now, we have to design an algorithm to transform infix expression to postfix

Transform Infix to Postfix

• Observation 1: The order of computation depends on the order of operators

– The parentheses must be added according to the priority of operations.

– The priority of operator * and / is higher then those of operation + and –

– If there are more than one equal-priority operators, we assume that the left one’s priority is higher than the right one’s

• This is called left-to-right parsing.

Transform Infix to Postfix

• Observation 1: The order of computation depends on the order of operators (cont.)

– For example, to add parentheses for the expression 10 + 2 * 8 - 3,

– we first add parenthesis to 2 * 8 since its priority is highest in the expression.

– Then we add parenthesis to 10 + (2 * 8) since the priorities of + and – are equal, and + is on the left of -. – Finally, we add parenthesis to all the expression and get ((10 + (2 * 8)) - 3).

Transform Infix to Postfix

• Observation 1: The order of computation depends on the order of operators (cont.) – The computation order of expression ((10 + (2 * 8)) - 3) is:

• 2 * 8 = 16

• 10 + 16 = 26

• 26 – 3 = 23

((10 + 16) -3)

(26 – 3)

23

Transform Infix to Postfix

• Simplify the problem, how if there are only +/- operators?

Transform Infix to Postfix

• Simplify the problem, how if there are only +/- operators? • The leftmost operator will be done first

– Ex: 10 - 2 + 3 8+3 11

Transform Infix to Postfix

• Simplify the problem, how if there are only +/- operators?

• Algorithm: maintain a stack and scan the postfix expression from left to right – When we get a number, output it

– When we get an operator O, pop the top element in the stack if the stack is not empty and then push(O) into the stack

Transform Infix to Postfix

• Simplify the problem, how if there are only +/- operators?

• Algorithm: maintain a stack and scan the postfix expression from left to right – When we get a number, output it

– When we get an operator O, pop the top element in the stack if the stack is not empty and then push(O) into the stack – When the expression is ended, pop all the

operators remain in the stack

Transform Infix to Postfix

Ex: 10 + 2 - 8 + 3

• We see the first number 10, output it

10

Transform Infix to Postfix

Ex: 10 + 2 - 8 + 3

• We see the first operator +, push(+) into the stack because at this moment the stack is empty

+

10

Transform Infix to Postfix

Ex: 10 + 2 - 8 + 3

• We see the number 2, output it

+

10 2

Transform Infix to Postfix

Ex: 10 + 2 - 8 + 3

• We see the operator -, pop the operator + and push(-) into the stack

-

10 2 +

Transform Infix to Postfix

Ex: 10 + 2 - 8 + 3

• We see the number 8, output it

-

10 2 + 8

Transform Infix to Postfix

Ex: 10 + 2 - 8 + 3

• We see the operator +, pop the operator - and push(+) into the stack

+

10 2 + 8 -

Transform Infix to Postfix

Ex: 10 + 2 - 8 + 3

• We see the number 3, output it

+

10 2 + 8 - 3

Transform Infix to Postfix

Ex: 10 + 2 - 8 + 3

• We come to the end of the expression, then we pop all the operators in the stack

10 2 + 8 – 3 +

Transform Infix to Postfix

Ex: 10 + 2 - 8 + 3

• When we get an operator, we have to push it into the stack and pop it when we see the next operator.

• The reason is, we have to “wait” for the second operand of the operator

Transform Infix to Postfix

• How to solve the problem when there are operators +, -, *, / ?

Transform Infix to Postfix

• Observation 2: scan the infix expression from left to right, if we see higher- priority operator after lower-priority one, we know that the second operand of the lower-priority operator is an expression

– Ex: a + b * c = a + ( b * c ) a bc* +

– That is, the expression b c * is the second operand of the operator “+”

Transform Infix to Postfix

• So, we modify the algorithm to adapt the situation

Transform Infix to Postfix

• Algorithm: maintain a stack and scan the postfix expression from left to right – When we get a number, output it

– When we get an operator O, pop the top element in the stack until there is no operator having higher priority then O and then push(O) into the stack

– When the expression is ended, pop all the operators remain in the stack

Transform Infix to Postfix

Ex: 10 + 2 * 8 - 3

• We see the first number 10, output it

10

Transform Infix to Postfix

Ex: 10 + 2 * 8 - 3

• We see the first operator +, push it into the stack

+

10

Transform Infix to Postfix

Ex: 10 + 2 * 8 - 3

• We see the number 2, output it

+

10 2

Transform Infix to Postfix

Ex: 10 + 2 * 8 - 3

• We see the operator *, since the top operator in the stack, +, has lower priority then *, push(*)

*

+

10 2

Transform Infix to Postfix

Ex: 10 + 2 * 8 - 3

• We see the number 8, output it

*

+

10 2 8

Transform Infix to Postfix

Ex: 10 + 2 * 8 - 3 • We see the operator -,

because its priority is lower then *, we pop. Also, because + is on the left of it, we pop +, too. Then we push(-)

-

10 2 8 * +

Transform Infix to Postfix

Ex: 10 + 2 * 8 - 3

• We see the number 3, output it

-

10 2 8 * + 3

Transform Infix to Postfix

Ex: 10 + 2 * 8 - 3

• Because the expression is ended, we pop all the operators in the stack

10 2 8 * + 3 -

Infix Postfix

2+3*4

a*b+5

(1+2)*7

a*b/c

(a/(b-c+d))*(e-a)*c

a/b-c+d*e-a*c

234*+

ab*5+

12+7*

ab*c/

abc-d+/ea-*c*

ab/c-de*ac*-

user compiler

Postfix: no parentheses, no precedence

Array-based Stack Implementation

Allocate an array of some size (pre-defined)

Maximum N elements in stack

Bottom stack element stored at element 0

last index in the array is the top

Increment top when one element is pushed, decrement after pop

Stack createS(max_stack_size) ::= #define MAX_STACK_SIZE 100 /* maximum stack size */ typedef struct { int key; /* other fields */ } element; element stack[MAX_STACK_SIZE]; int top = -1; Boolean isEmpty(Stack) ::= top< 0; Boolean isFull(Stack) ::= top >= MAX_STACK_SIZE-1;

Stack Implementation: CreateS, isEmpty, isFull

void push(int *top, element item) { /* add an item to the global stack */ if (*top >= MAX_STACK_SIZE-1) { stack_full( ); return; } stack[++*top] = item; }

Push

element pop(int *top) { /* return the top element from the stack */ if (*top == -1) return stack_empty( ); /* returns and error key */ return stack[(*top)--]; }

Pop

4-2 Stack Linked List Implementation

56

Top

(a) Conceptual (a) Physical

count top

Head

Data n

odes

4-2 Stack Linked List Implementation

57

Stack head structure

count top

data next Stack node structure

Stack

count <integer>

top <node pointer>

end stack

node

data <datatype>

next <node pointer>

end node

void push(pnode top, element item) { /* add an element to the top of the stack */ pnode temp = (pnode) malloc (sizeof (node)); if (IS_FULL(temp)) { fprintf(stderr, “ The memory is full\n”); exit(1); } temp->item = item; temp->next= top; top= temp; }

List-based Stack Implementation: Push

element pop(pnode top) { /* delete an element from the stack */ pnode temp = top; element item; if (IS_EMPTY(temp)) { fprintf(stderr, “The stack is empty\n”); exit(1); } item = temp->item; top = temp->next; free(temp); return item; }

Pop

top related