stack

16
Stack • What is a stack? A stack is an ordered list in which insertions and deletions are made at one end called the top. It is also called a Last-In-First-Out (LIFO) list.

Upload: kylar

Post on 04-Jan-2016

22 views

Category:

Documents


0 download

DESCRIPTION

Stack. What is a stack? A stack is an ordered list in which insertions and deletions are made at one end called the top. It is also called a Last-In-First-Out (LIFO) list. Stack (Cont.). - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Stack

Stack

• What is a stack? A stack is an ordered list in which insertions and deletions are made at one end called the top. It is also called a Last-In-First-Out (LIFO) list.

Page 2: Stack

Stack (Cont.)

• Given a stack S = (a0, …, an-1), a0 is the bottom element, an-1 is the top element, and ai is on top of element ai-1, 0 < i < n.

a0

a1

a2

Push (Add)

a0

a1

a2

Pop (Delete)

a3

a3

Page 3: Stack

System Stack

• Whenever a function is invoked, the program creates a structure, referred to as an activation record or a stack frame, and places it on top of the system stack.

return address

previous frame pointer fp

main return address

previous frame pointer

fp

main

return address

previous frame pointer

a1

local variables

Page 4: Stack

ADT 3.1 Abstract Data Type Stack

Stack{ // objects: A finite ordered list with zero or more elements

public: Stack (int MaxStackSize = DefaultSize); // Create an empty stack whose maximum size is MaxStackSize Boolean IsFull(); // if number of elements in the stack is equal to the maximum size // of the stack, return TRUE(1) else return FALSE(0) void Add(const KeyType& item); // if IsFull(), then StackFull(); else insert item into the top of the stack. Boolean IsEmpty(); // if number of elements in the stack is 0, return TRUE(1) else return FALSE(0) KeyType* Delete(KeyType& ); // if IsEmpty(), then StackEmpty() and return 0; // else remove and return a pointer to the top element of the stack.

};

Page 5: Stack

Implementation of Stack by Array

a0

a1

a2

Array index 0 1 2 3 n-1

a0 a1 a2

an-1

an-1

Page 6: Stack

Queue

• A queue is an ordered list in which all insertions take place at one end and all deletions take place at the opposite end. It is also known as First-In-First-Out (FIFO) lists.

a0 a1 a2an-1

front rear

Page 7: Stack

ADT 3.2 Abstract Data Type Queue

Queue{

// objects: A finite ordered list with zero or more elementspublic: Queue(int MaxQueueSize = DefaultSize); // Create an empty queue whose maximum size is MaxQueueSize Boolean IsFull(); // if number of elements in the queue is equal to the maximum size of // the queue, return TRUE(1); otherwise, return FALSE(0) void Add(const KeyType& item); // if IsFull(), then QueueFull(); else insert item at rear of the queue Boolean IsEmpty(); // if number of elements in the queue is equal to 0, return TRUE(1) // else return FALSE(0) KeyType* Delete(KeyType&); // if IsEmpty(), then QueueEmpty() and return 0; // else remove the item at the front of the queue and return a pointer to it

};

Page 8: Stack

Queue Manipulation Issue

• It’s intuitive to use array for implementing a queue. However, queue manipulations (add and/or delete) will require elements in the array to move. In the worse case, the complexity is of O(MaxSize).

Page 9: Stack

Shifting Elements in Queue

front rear

front rear

front rear

Page 10: Stack

Circular Queue

• To resolve the issue of moving elements in the queue, circular queue assigns next element to q[0] when rear == MaxSize – 1.

• Pointer front will always point one position counterclockwise from the first element in the queue.

• Queue is empty when front == rear. But it is also true when queue is full. This will be a problem.

Page 11: Stack

Circular Queue (Cont.)

01

2

3

4

n-1n-2

n-3

n-4

front = 0; rear = 4

01

2

3

4

n-1n-2

n-3

n-4

front = n-4; rear = 0

J1

J2

J3

J4

J1

J2J3J4

Page 12: Stack

Circular Queue (Cont.)

• To resolve the issue when front == rear on whether the queue is full or empty, one way is to use only MaxSize – 1 elements in the queue at any time.

• Each time when adding an item to the queue, newrear is calculated before adding the item. If newrear == front, then the queue is full.

• Another way to resolve the issue is using a flag to keep track of last operation. The drawback of the method is it tends to slow down Add and Delete function.

Page 13: Stack

The Maze Problem

011110111110010

011110001111100

000001101100011

101111101101100

111111110011110

101001011101100

101001011101100

111111101001011

001101101111011

110011110000110

111001110110001

111110001100010Entrance

Exit

Page 14: Stack

Allowable Moves

X

[i][j]

[i+1][j]

[i][j+1][i][j-1]

[i+1][j-1] [i+1][j+1]

[i-1][j+1][i-1][j][i-1][j-1]

N

E

S

W

NE

SESW

NW

Page 15: Stack

The Maze Problem (Cont.)

• Stack is used in solving the maze problem for storing the coordinates and direction.

• Use of another mxp array to mark any position that has been visited before.

Page 16: Stack

Postfix Notation

Expressions are converted into Postfix notation before compiler can accept and process them.

X = A/B – C + D * E – A * CInfix A/B–C+D*E–A*CPostfix => AB/C-DE*+AC*-

Operation Postfix

T1 = A / B T1C-DE*+AC*-

T2 = T1 - C T2 DE*+AC*-

T3 = D * E T2T3+AC*-

T4 = T2 + T3 T4AC*-

T5 = A * C T4 T5 -

T6 = T4 - T5 T6