using a queue - kent state universitypersonal.kent.edu/~aguercio/cs33001new_slides/chapt08.pdf ·...

17
Chapter 8 introduces the queue data type. Several example applications of queues are given in that chapter. This presentation describes the queue operations and two ways to implement a queue. Using a Queue Data Structures and Other Objects Using C++

Upload: vuongthuan

Post on 14-May-2018

214 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

Chapter 8 introduces the queue data type.

Several example applications of queues are given in that chapter.

This presentation describes the queue operations and two ways to implement a queue.

Using a Queue

Data Structuresand Other ObjectsUsing C++

Presenter
Presentation Notes
This lecture introduces queues. The presentation also shows two common ways of implementing a queue of integers.
Page 2: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

The Queue Operations

A queue is like a line of people waiting for a bank teller. The queue has a front and a rear.

$ $

FrontRear

Presenter
Presentation Notes
When you think of a computer science queue, you can imagine a line of people waiting for a teller in a bank. The line has a front (the next person to be served) and a rear (the last person to arrive.
Page 3: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

The Queue Operations

New people must enter the queue at the rear. The C++ queue class calls this a push, although it is usually called an enqueue operation.

$ $

FrontRear

Presenter
Presentation Notes
Don’t ask me why the C++ STL used the name push. It only confuses matters with a stack. In any case, when a new item enters a queue, it does so at the rear.
Page 4: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

The Queue Operations

When an item is taken from the queue, it always comes from the front. The C++ queue calls this a pop, although it is usually called a dequeue operation.

$ $

FrontRear

Presenter
Presentation Notes
When an item is removed from a queue, the removal occurs at the front.
Page 5: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

The Queue Class

The C++ standard template library has a queue template class.

The template parameter is the type of the items that can be put in the queue.

template <class Item>class queue<Item>{public:

queue( );void push(const Item& entry);void pop( );bool empty( ) const;Item front( ) const;…

Presenter
Presentation Notes
These are the four most common queue operations. The empty function tells you whether the queue has any items at the moment. The front operation returns the item at the front of the queue (without removing it from the queue).
Page 6: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

Array Implementation

A queue can be implemented with an array, as shown here. For example, this queue contains the integers 4 (at the front), 8 and 6 (at the rear).

[ 0 ] [1] [ 2 ] [ 3 ] [ 4 ] [ 5 ] . . .

An array of integers to implement a queue of integers

4 8 6

We don't care what's inthis part of the array.

Presenter
Presentation Notes
Just like our stack implementation in the previous chapter, one way to implement a queue is to store the elements in an array.
Page 7: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

Array Implementation

The easiest implementation also keeps track of the number of items in the queue and the index of the first element (at the front of the queue), the last element (at the rear).

[ 0 ] [1] [ 2 ] [ 3 ] [ 4 ] [ 5 ] . . .

4 8 6

size3

first0

last2

Presenter
Presentation Notes
The easiest implementation also keeps track of three numbers. The size could be as small as zero or as large as the number of items in the array. The index of the front element is stored in the first member variable. The front item in the queue is at that index of the array. The next item is after the first one and so on until the rear of the queue that occurs at the index stored in a member variable called last.
Page 8: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

A Dequeue Operation

When an element leaves the queue, size is decremented, and first changes, too.

[ 0 ] [1] [ 2 ] [ 3 ] [ 4 ] [ 5 ] . . .

4 8 6

size2

first1

last2

Presenter
Presentation Notes
This shows how the member variables change when an item leaves the queue.
Page 9: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

An Enqueue Operation

When an element enters the queue, size is incremented, and last changes, too.

[ 0 ] [1] [ 2 ] [ 3 ] [ 4 ] [ 5 ] . . .

28 6

size3

first1

last3

Presenter
Presentation Notes
And this shows how the member variables change when a new item enters the queue. For a fixed size array, a new item may enter only if the current size of the queue is less than the size of the array. For a dynamic array, we could increase the size of the array when the queue grows beyond the current array size.
Page 10: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

At the End of the Array

There is special behavior at the end of the array. For example, suppose we want to add a new element to this queue, where the last index is [5]:

[ 0 ] [1] [ 2 ] [ 3 ] [ 4 ] [ 5 ]

2 16

size3

first3

last5

Presenter
Presentation Notes
An array implementation of a queue must have special behavior when the rear of the queue reaches the end of the array. In this example, suppose we want to add the number 4 to the queue. We can do so…
Page 11: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

At the End of the Array

The new element goes at the front of the array (if that spot isn’t already used):

[ 0 ] [1] [ 2 ] [ 3 ] [ 4 ] [ 5 ]

2 16

size4

first3

last0

4

Presenter
Presentation Notes
…by putting it at location 0 (if that location is not already used).
Page 12: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

Array Implementation

Easy to implement But it has a limited capacity with a fixed array Or you must use a dynamic array for an

unbounded capacity Special behavior is needed when the rear reaches

the end of the array.

[ 0 ] [1] [ 2 ] [ 3 ] [ 4 ] [ 5 ] . . .

4 8 6

size3

first0

last2

Presenter
Presentation Notes
Here are some of the key aspects of an array implementation of a queue.
Page 13: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

Linked List Implementation

10

15

7

null

13

A queue can also be implemented with a linked list with both a head and a tail pointer.

head_ptr

tail_ptr

Presenter
Presentation Notes
A linked list can also be used to implement a queue, but we must maintain both a head and a tail pointer because we need access to both the front and the rear of the queue.
Page 14: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

Linked List Implementation

10

15

7

null

13

Which end do you think is the front of the queue? Why?

head_ptr

tail_ptr

Presenter
Presentation Notes
Does it matter which end of a singly-linked list we use for the front of the queue?
Page 15: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

Linked List Implementation

10

15

7

nullhead_ptr

13

The head_ptr points to the front of the list.

Because it is harder to remove items from the tail of the list.

tail_ptr

Front

Rear

Presenter
Presentation Notes
Of course, we could put the front of the queue at the end of the linked list, but it would be hard to remove an item. Do you see why?
Page 16: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

Like stacks, queues have many applications. Items enter a queue at the rear and leave a

queue at the front.Queues can be implemented using an array

or using a linked list.

Summary

Presenter
Presentation Notes
A quick summary . . .
Page 17: Using a Queue - Kent State Universitypersonal.kent.edu/~aguercio/CS33001New_Slides/chapt08.pdf · queue data type. Several example ... Data Structures. and Other Objects. Using C++

THE END

Presentation copyright 2010, Addison Wesley Longman,For use with Data Structures and Other Objects Using C++by Michael Main and Walter Savitch.

Some artwork in the presentation is used with permission from Presentation Task Force(copyright New Vision Technologies Inc) and Corel Gallery Clipart Catalog (copyrightCorel Corporation, 3G Graphics Inc, Archive Arts, Cartesia Software, Image ClubGraphics Inc, One Mile Up Inc, TechPool Studios, Totem Graphics Inc).

Students and instructors who use Data Structures and Other Objects Using C++ are welcometo use this presentation however they see fit, so long as this copyright notice remainsintact.

Presenter
Presentation Notes
Feel free to send your ideas to: Michael Main [email protected]