my lecture stack_queue_operation

62
Stacks and Queues

Upload: senthil-kumar

Post on 15-Jan-2015

375 views

Category:

Education


0 download

DESCRIPTION

Data Structure - ITE208

TRANSCRIPT

Page 1: My lecture stack_queue_operation

Stacks and Queues

Page 2: My lecture stack_queue_operation

Introduction to the Stack

• A stack is a data structure that stores and retrieves items in a last-in-first-out (LIFO) manner.

Page 3: My lecture stack_queue_operation

Applications of Stacks

• Computer systems use stacks during a program’s execution to store function return addresses, local variables, etc.

• Some calculators use stacks for performing mathematical operations.

• Maze Problem• Infix and Postfix Evaluation• Breadth First Search• Undo sequence in a text editor• Browser History

Page 4: My lecture stack_queue_operation

4

0 1 0 0 0 1 1 0 0 0 1 1 1 1 1 1 0 0 0 1 1 0 1 1 1 0 0 1 1 1 0 1 1 0 0 0 0 1 1 1 1 0 0 1 1 1 1 0 1 1 1 1 0 1 1 0 1 1 0 01 1 0 1 0 0 1 0 1 1 1 1 1 1 10 0 1 1 0 1 1 1 0 1 0 0 1 0 10 1 1 1 1 0 0 1 1 1 1 1 1 1 10 0 1 1 0 1 1 0 1 1 1 1 1 0 1 1 1 0 0 0 1 1 0 1 1 0 0 0 0 00 0 1 1 1 1 1 0 0 0 1 1 1 1 00 1 0 0 1 1 1 1 1 0 1 1 1 1 0

entrance

exit

A Mazing Problem

1: blocked path 0: through path

Page 5: My lecture stack_queue_operation

Static and Dynamic Stacks

• Static Stacks– Fixed size– Can be implemented with an array

• Dynamic Stacks– Grow in size as needed– Can be implemented with a linked list

Page 6: My lecture stack_queue_operation

6

Limitations of arrays

• Once an array is created, its size cannot be altered.

• Array provides inadequate support for inserting, deleting, sorting, and searching operations.

Page 7: My lecture stack_queue_operation

7

Design of ArrayList and LinkedList

For convenience, let’s name these two classes: MyArrayList and MyLinkedList. These two classes have common operations, but different data fields. The common operations can be generalized in an interface or an abstract class. A good strategy is to combine the virtues of interfaces and abstract classes by providing both interface and abstract class in the design so the user can use either the interface or the abstract class whichever is convenient. Such an abstract class is known as a convenience class.

MyList MyAbstractList

MyArrayList

MyLinkedList

Page 8: My lecture stack_queue_operation

Stack Operations• Push

– causes a value to be stored in (pushed onto) top of the stack

• Pop– retrieves and removes a value from the top of

the stack

Thus, we need to keep the index of or have a pointer to the top element

Page 9: My lecture stack_queue_operation

The Push Operation

• Suppose we have an empty integer stack that is capable of holding a maximum of three values. With that stack we execute the following push operations.

push(5);push(10);push(12);

Page 10: My lecture stack_queue_operation

The Push OperationThe state of the stack after each of the push

operations:

10

5

12

10

55

push(5); Push(10); push(12);

top

top

top

Page 11: My lecture stack_queue_operation

The Pop Operation• Now, suppose we execute three consecutive

pop operations on the same stack:

5

10

5

pop();pop();

toptop

top

12pop();

10

5

Page 12: My lecture stack_queue_operation

12

Stacks

• Problem:– What happens if we try to pop an item off

the stack when the stack is empty?• This is called a stack underflow. The pop method

needs some way of telling us that this has happened.

Page 13: My lecture stack_queue_operation

13

Reversing a Word

• We can use a stack to reverse the letters in a word.

• How?

• Read each letter in the word and push it onto the stack

• When you reach the end of the word, pop the letters off the stack and print them out.

Page 14: My lecture stack_queue_operation

Other Useful Stack Functions

• isFull: A Boolean function needed for static stacks. Returns true if the stack is full. Otherwise, returns false.

• isEmpty: A Boolean operation needed for all stacks. Returns true if the stack is empty. Otherwise, returns false.

Page 15: My lecture stack_queue_operation

Performance and Limitations (array-based implementation of stack ADT)

• Performance– Let n be the number of elements in the stack– The space used is O(n)– Each operation runs in time O(1)

• Limitations– The maximum size of the stack must be defined a

priori , and cannot be changed– Trying to push a new element into a full stack

causes an implementation-specific exception

Page 16: My lecture stack_queue_operation

Stack Summary• Stack Operation Complexity for

Different ImplementationsArray Fixed-Size

ArrayExpandable (doubling strategy)

SinglyLinkedList

Pop() O(1) O(1) O(1)

Push(o) O(1) O(n) Worst CaseO(1) Best CaseO(1) Average Case

O(1)

Top() O(1) O(1) O(1)

Size(), isEmpty() O(1) O(1) O(1)

Page 17: My lecture stack_queue_operation

A Static Integer Stack Implementation

• Using classes (see IntStack.h and IntStack.cpp)

Member Variable Description

 

stackArray A pointer to int. When the constructor is executed, it usesstackArray to dynamically allocate an array for storage.

 

stackSize An integer that holds the size of the stack.

 

top An integer that is used to mark the top of the stack.

Page 18: My lecture stack_queue_operation

The IntStack Class• Member Functions

Member Function Description

 

constructor The class constructor accepts an integer argument, which specifies thesize of the stack. An integer array of this size is dynamicallyallocated, and assigned to stackArray. Also, the variable top isinitialized to -1.

push The push function accepts an integer argument, which is pushed ontothe top of the stack.

pop The pop function uses an integer reference parameter. The value atthe top of the stack is removed, and copied into the referenceparameter.

Page 19: My lecture stack_queue_operation

The IntStack Class• Member Functions (continued)

Member Function Description

 

isFull Returns true if the stack is full and false otherwise. The stack isfull when top is equal to stackSize - 1.

isEmpty Returns true if the stack is empty, and false otherwise. The stackis empty when top is set to -1.

Page 20: My lecture stack_queue_operation

20

MyStack and MyQueue MyStack

-list: MyArrayList

+isEmpty(): boolean

+getSize(): int

+peek(): Object

+pop(): Object

+push(o: Object): Object

+search(o: Object): int

Returns true if this stack is empty.

Returns the number of elements in this stack.

Returns the top element in this stack.

Returns and removes the top element in this stack.

Adds a new element to the top of this stack.

Returns the position of the specified element in this stack.

MyStack

MyQueue<E>

-list: MyLinkedList<E>

+enqueue(e: E): void

+dequeue(): E

+getSize(): int

Adds an element to this queue.

Removes an element from this queue.

Returns the number of elements from this queue.

MyQueue

Page 21: My lecture stack_queue_operation

Contents of IntStack.h#ifndef INTSTACK_H#define INTSTACK_H

class IntStack{private:

int *stackArray;int stackSize;int top;

public:IntStack(int);void push(int);void pop(int &);bool isFull(void);bool isEmpty(void);

};

#endif

Page 22: My lecture stack_queue_operation

Contents of IntStack.cpp//*******************// Constructor *//*******************

IntStack::IntStack(int size){

stackArray = new int[size]; stackSize = size; top = -1;

}

Page 23: My lecture stack_queue_operation

Contents of IntStack.cpp//*************************************************// Member function push pushes the argument onto *// the stack. *//*************************************************

void IntStack::push(int num){

if (isFull()){

cout << "The stack is full.\n";}else{

top++;stackArray[top] = num;

}}

Page 24: My lecture stack_queue_operation

Contents of IntStack.cpp//****************************************************// Member function pop pops the value at the top *// of the stack off, and copies it into the variable *// passed as an argument. *//****************************************************

void IntStack::pop(int &num){

if (isEmpty()){

cout << "The stack is empty.\n";}else{

num = stackArray[top];top--;

}}

Page 25: My lecture stack_queue_operation

Contents of IntStack.cpp//***************************************************// Member function isFull returns true if the stack *// is full, or false otherwise. *//***************************************************

bool IntStack::isFull(void){

bool status;

if (top == stackSize - 1)status = true;

elsestatus = false;

return status;}

Page 26: My lecture stack_queue_operation

Contents of IntStack.cpp//****************************************************// Member funciton isEmpty returns true if the stack *// is empty, or false otherwise. *//****************************************************

bool IntStack::isEmpty(void){

bool status;

if (top == -1)status = true;

else status = false;

return status;}

Page 27: My lecture stack_queue_operation

Demo Program (IntStackDemo.cpp)#include "intstack.h"#include <iostream>using namespace std;

int main(){ IntStack stack(5); int num;

cout << "Created an empty stack with capacity 5, trying to pop. \n";stack.pop(num);

int values[] = {2, 7, 10, 5, 3, 8, 11}; cout << "\nPushing...\n"; for (int k = 0; k < 7; k++) { cout << values[k] << " "; stack.push(values[k]);

cout << endl; } cout << "\nPopping...\n"; while (!stack.isEmpty()) { stack.pop(num); cout << num << endl; } cout << endl; return 0;}

Created an empty stack with capacity 5, trying to pop.The stack is empty.

Pushing...2710538 The stack is full.

11 The stack is full.

Popping...351072

Page 28: My lecture stack_queue_operation

Dynamic Stacks• A dynamic stack is built on a linked list instead of an

array. • A linked list-based stack offers two advantages over

an array-based stack. – No need to specify the starting size of the stack.

• A dynamic stack simply starts as an empty linked list, and then expands by one node each time a value is pushed.

– A dynamic stack will never be full, as long as the system has enough free memory.

• Next couple of slides give an implementation of a dynamic integer stack using classes (see DynIntStack.h and DynIntStack.cpp)

Page 29: My lecture stack_queue_operation

Contents of DynIntStack.hstruct StackNode{

int value;StackNode *next;

};

class DynIntStack{private:

StackNode *top;

public:DynIntStack(void);void push(int);void pop(int &);bool isEmpty(void);

};

Page 30: My lecture stack_queue_operation

Contents of DynIntStack.cpp//************************************************// Constructor to generate an empty stack. *//************************************************

DynIntStack::DynIntStack(){

top = NULL; }

Page 31: My lecture stack_queue_operation

Contents of DynIntStack.cpp//************************************************// Member function push pushes the argument onto *// the stack. *//************************************************void DynIntStack::push(int num){

StackNode *newNode;// Allocate a new node & store NumnewNode = new StackNode;newNode->value = num;

// If there are no nodes in the list// make newNode the first nodeif (isEmpty()){

top = newNode;newNode->next = NULL;

}else // Otherwise, insert NewNode before top{

newNode->next = top;top = newNode;

}}

Page 32: My lecture stack_queue_operation

Contents of DynIntStack.cpp/****************************************************// Member function pop pops the value at the top *// of the stack off, and copies it into the variable *// passed as an argument. *//****************************************************void DynIntStack::pop(int &num){

StackNode *temp;

if (isEmpty()){

cout << "The stack is empty.\n";}else // pop value off top of stack{

num = top->value;temp = top->next;delete top;top = temp;

}}

Page 33: My lecture stack_queue_operation

Contents of DynIntStack.cpp//****************************************************// Member funciton isEmpty returns true if the stack *// is empty, or false otherwise. *//****************************************************

bool DynIntStack::isEmpty(void){

bool status;

if (top == NULL)status = true;

elsestatus = false;

return status;}

Page 34: My lecture stack_queue_operation

Demo Program (DynIntStackDemo.cpp)// This program demonstrates the dynamic stack class DynIntStack.#include <iostream>#include "DynIntStack.h"using namespace std;

int main(){ DynIntStack stack; int catchVar; // Push values 5, 10, and 15 on the stack for (int value = 5; value <=15; value = value + 5) { cout << "Push: " << value << "\n"; stack.push(value); } cout << "\n"; //Pop three values, then attempt a fourth pop for (int k = 1; k <= 3; k++) { cout << "Pop: "; stack.pop(catchVar); cout << catchVar << endl; }

cout << "\nAttempting to pop again... "; stack.pop(catchVar); return 0;}

Push: 5Push: 10Push: 15

Pop: 15Pop: 10Pop: 5

Attempting to pop again... The stack is empty.

Page 35: My lecture stack_queue_operation

DynIntStack stack;char token;int rhs, lhs, result;

cout << "Please enter postfix expression: ";while (cin >> token) //as long as there is input{

if (token >= '0' && token <= '9') //if digit{

stack.push(token - '0'); //push it to stack}else //if operator{

stack.pop(rhs);stack.pop(lhs); // pop two operands//and apply the operations. Result is pushed to the

stackif (token == '+')

stack.push(lhs + rhs);else if (token == '-')

stack.push(lhs - rhs);else if (token == '*')

stack.push(lhs * rhs);else if (token == '/')

stack.push(lhs / rhs);}

}//after while, the dtack contains only the final result, pop it and

displaystack.pop(result); cout << "result is: " << result << endl;

Page 36: My lecture stack_queue_operation

Queue

Page 37: My lecture stack_queue_operation

Introduction to the Queue• Like a stack, a queue is a data structure that holds a sequence of

elements. • A queue, however, provides access to its elements in first-in, first-out

(FIFO) order. • The elements in a queue are processed like customers standing in a

grocery check-out line: the first customer in line is the first one served.

Page 38: My lecture stack_queue_operation

Example Applications of Queues• In a multi-user system, a queue is used to hold print jobs

submitted by users, while the printer services those jobs one at a time.

• Communications software also uses queues to hold information received over networks. Sometimes information is transmitted to a system faster than it can be processed, so it is placed in a queue when it is received.

• Round Robin Scheduling• Buffers on MP3 players and portable CD players, iPod playlist• Call center phone systems will use a queue to hold people in

line until a service representative is free.

Page 39: My lecture stack_queue_operation

39

Application: Round Robin Schedulers

• We can implement a round robin scheduler using a queue, Q, by repeatedly performing the following steps:

1. e = Q.dequeue()

2. Service element e

3. Q.enqueue(e)

The Queue

Shared Service

1. Deque the next element

3. Enqueue the serviced element

2 . Service the next element

Page 40: My lecture stack_queue_operation

Static and Dynamic Queues

• Just as stacks, queues are implemented as arrays or linked lists.

• Dynamic queues offer the same advantages over static queues that dynamic stacks offer over static stacks.

Page 41: My lecture stack_queue_operation

Queue Operations

• Think of queues as having a front and a rear. – rear: position where elements are added– front: position from which elements are

removed

Page 42: My lecture stack_queue_operation

Queue Operations

• The two primary queue operations are enqueuing and dequeuing.

• To enqueue means to insert an element at the rear of a queue.

• To dequeue means to remove an element from the front of a queue.

Page 43: My lecture stack_queue_operation

Efficiency Problem of Dequeue & Solution

• Shifting after each dequeue operation causes ineffiency.

• Solution– Let front index move as elements are

removed– let rear index "wrap around" to the beginning

of array, treating array as circular• Similarly, the front index as well

– Yields more complex enqueue, dequeue code, but more efficient

– Let's see the trace of this method on the board for the enqueue and dequeue operations given on the right (queue size is 3)

Enqueue(3);Enqueue(6);Enqueue(9);Dequeue();Dequeue();Enqueue(12);Dequeue();

Page 44: My lecture stack_queue_operation

INITIALIZE THE QUEUE

items[MAXQUEUE-1]

. .

. .

.

items[1]

items[0] front=0

rear=-1

• The queue is initialized by having the rear set to -1, and front set to 0. Let us assume that maximum number of the element we have in a queue is MAXQUEUE elements as shown below.

Page 45: My lecture stack_queue_operation

insert(&Queue, ‘A’)

• an item (A) is inserted at the Rear of the queue

items[MAXQUEUE-1]

. .

. .

items[3]

items[2]

items[1]

items[0] A Front=0, Rear=0

Page 46: My lecture stack_queue_operation

insert(&Queue, ‘B’)

• A new item (B) is inserted at the Rear of the queue

items[MAXQUEUE-1]

. .

. .

items[3]

items[2]

items[1] B Rear=1

items[0] A Front=0

Page 47: My lecture stack_queue_operation

insert(&Queue, ‘C’)

• A new item (C) is inserted at the Rear of the queue

items[MAXQUEUE-1]

. .

. .

items[3]

items[2] C Rear=2

items[1] B

items[0] A Front=0

Page 48: My lecture stack_queue_operation

insert(&Queue, ‘D’)

• A new item (D) is inserted at the Rear of the queue

items[MAXQUEUE-1]

. .

. .

items[3] D Rear=3

items[2] C

items[1] B

items[0] A Front=0

Page 49: My lecture stack_queue_operation

char remove(&Queue)

• an item (A) is removed (deleted) from the Front of the queue

items[MAXQUEUE-1]

. .

. .

items[3] D Rear=3

items[2] C

items[1] B Front=1

items[0] A

Page 50: My lecture stack_queue_operation

char remove(&Queue)

• Remove two items from the front of the queue.

items[MAXQUEUE-1]

. .

. .

items[3] D Rear=3

items[2] C Front=2

items[1] B

items[0] A

Page 51: My lecture stack_queue_operation

char remove(&Queue)

• Remove two items from the front of the queue.

items[MAXQUEUE-1]

. .

. .

items[3] D Front=Rear=3

items[2] C

items[1] B

items[0] A

Page 52: My lecture stack_queue_operation

char remove(&Queue)

• Remove one more item from the front of the queue.

items[MAXQUEUE-1]

. .

items[4] Front=4

items[3] D Rear=3

items[2] C

items[1] B

items[0] A

Page 53: My lecture stack_queue_operation

Performance and Limitations - array-based implementation of queue ADT

• Performance– Let n be the number of elements in the queue– The space used is O(n)– Each operation runs in time O(1)

• Limitations– The maximum size of the queue must be defined a

priori , and cannot be changed– Trying to enqueue a new element into a full queue

causes an implementation-specific exception

Page 54: My lecture stack_queue_operation

Queue Summary• Queue Operation Complexity for Different

ImplementationsArray Fixed-Size

ArrayExpandable (doubling strategy)

ListSingly-Linked

dequeue() O(1) O(1) O(1)

enqueue(o) O(1) O(n) Worst CaseO(1) Best CaseO(1) Average Case

O(1)

front() O(1) O(1) O(1)

Size(), isEmpty() O(1) O(1) O(1)

Page 55: My lecture stack_queue_operation

Implementation of a Static Queue• The previous discussion was about static arrays

– Container is an array

• Class Implementation for a static integer queue– Member functions

• enqueue• dequeue• isEmpty• isFull• clear

Page 56: My lecture stack_queue_operation

• void insert_element()• {•   int num;•   printf("\n Enter the number to be inserted: ");•   scanf("%d",&num);•   if(front==0 && rear==MAX-1)•     printf("\n Queue OverFlow Occured");•   else if(front==-1&&rear==-1)•   {•       front=rear=0;•       queue[rear]=num;•    }•    else•   {•       rear++;•       queue[rear]=num;•   }• }

Page 57: My lecture stack_queue_operation

• void delete_element()• {•   int element;•   if(front== -1)•   {•       printf("\n Underflow");•   }•   element=queue[front];•   if(front==rear)•      front=rear=-1;•   else•   {•     if(front==MAX-1)•       front=0;•     else•       front++;•        printf("\n The deleted element is: %d",element);•   }•  • }

Page 58: My lecture stack_queue_operation

Dynamic Queues• Like a stack, a queue can be implemented

using a linked list• Allows dynamic sizing, avoids issue of

shifting elements or wrapping indices

front rear

NULL

Page 59: My lecture stack_queue_operation

Dynamic Queues• A dynamic queue starts as an empty linked list.• With the first enqueue operation, a node is added,

which is pointed to by front and rear pointers. • As each new item is added to the queue, a new

node is added to the rear of the list, and the rear pointer is updated to point to the new node.

• As each item is dequeued, the node pointed to by the front pointer is deleted, and front is made to point to the next node in the list.

• See the next slides for the implementation of an integer dynamic queue.

Page 60: My lecture stack_queue_operation

struct node

{

int info;

struct node *link;

}*front = NULL, *rear = NULL;

Page 61: My lecture stack_queue_operation

void insert()

{

printf("\n\nEnter ITEM: ");

scanf("%d", &item);

if(rear == NULL)

{

rear = (struct node *)malloc(sizeof(struct node));

rear->info = item;

rear->link = NULL;

front = rear;

}

else

{

rear->link = (struct node *)malloc(sizeof(struct node));

rear = rear->link;

rear->info = item;

rear->link = NULL;

}

}

Page 62: My lecture stack_queue_operation

void delete()

{

struct node *ptr;

if(front == NULL)

printf("\n\nQueue is empty.\n");

else

{

ptr = front;

item = front->info;

front = front->link;

free(ptr);

printf("\nItem deleted: %d\n", item);

if(front == NULL)

rear = NULL;

}

}