csc212 data structure lecture 16 heaps and priority queues instructor: george wolberg department of...

48
CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science

Upload: emily-tate

Post on 29-Jan-2016

216 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

CSC212 Data Structure

CSC212 Data Structure

Lecture 16

Heaps and Priority Queues

Instructor: George Wolberg

Department of Computer Science

City College of New York

Page 2: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Chapter 11 has several programming projects, including a project that uses heaps.

This presentation shows you what a heap is, and demonstrates two of the important heap algorithms.

HeapsHeaps

Data Structuresand Other ObjectsUsing C++

Page 3: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

TopicsTopics

Heap Definition Heap Applications

priority queues (chapter 8), sorting (chapter 13) Two Heap Operations – add, remove

reheapification upward and downward why is a heap good for implementing a priority queue?

Heap Implementation using binary_tree_node class using fixed size or dynamic arrays

Page 4: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Heaps DefinitionHeaps Definition

A heap is a certain kind of complete binary tree.

Page 5: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

HeapsHeaps

A heap is a certain kind of complete binary tree.

When a completebinary tree is built,

its first node must bethe root.

When a completebinary tree is built,

its first node must bethe root.

Root

Page 6: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

HeapsHeaps

Complete binary tree.

Left childof theroot

The second node isalways the left child

of the root.

The second node isalways the left child

of the root.

Page 7: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

HeapsHeaps

Complete binary tree.

Right childof the

root

The third node isalways the right child

of the root.

The third node isalways the right child

of the root.

Page 8: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

HeapsHeaps

Complete binary tree.

The next nodesalways fill the next

level from left-to-right.

The next nodesalways fill the next

level from left-to-right.

Page 9: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

HeapsHeaps

Complete binary tree.

The next nodesalways fill the next

level from left-to-right.

The next nodesalways fill the next

level from left-to-right.

Page 10: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

HeapsHeaps

Complete binary tree.

The next nodesalways fill the next

level from left-to-right.

The next nodesalways fill the next

level from left-to-right.

Page 11: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

HeapsHeaps

Complete binary tree.

The next nodesalways fill the next

level from left-to-right.

The next nodesalways fill the next

level from left-to-right.

Page 12: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

HeapsHeaps

Complete binary tree.

Page 13: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

HeapsHeaps

A heap is a certain kind of complete binary tree.

Each node in a heapcontains a key thatcan be compared toother nodes' keys.

Each node in a heapcontains a key thatcan be compared toother nodes' keys.

19

4222127

23

45

35

Page 14: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

HeapsHeaps

A heap is a certain kind of complete binary tree.

The "heap property"requires that each

node's key is >= thekeys of its children

The "heap property"requires that each

node's key is >= thekeys of its children

19

4222127

23

45

35

Page 15: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

What it is not: It is not a BSTWhat it is not: It is not a BST

In a binary search tree, the entries of the nodes can be compared with a strict weak ordering. Two rules are followed for every node n: The entry in node n is NEVER less than an

entry in its left subtree The entry in the node n is less than every entry

in its right subtree. BST is not necessarily a complete tree

Page 16: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

What it is: Heap DefinitionWhat it is: Heap Definition

A heap is a binary tree where the entries of the nodes can be compared with the less than operator of a strict weak ordering. In addition, two rules are followed: The entry contained by the node is NEVER less

than the entries of the node’s children The tree is a COMPLETE tree.

Q: where is the largest entry? for what....

Page 17: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Application: Priority QueuesApplication: Priority Queues

A priority queue is a container class that allows entries to be retrieved according to some specific priority levels The highest priority entry is removed first If there are several entries with equally high

priorities, then the priority queue’s implementation determines which will come out first (e.g. FIFO)

Heap is suitable for a priority queue

Page 18: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

The Priority Queue ADT with HeapsThe Priority Queue ADT with Heaps

The entry with the highest priority is always at the root node

Focus on two priority queue operations adding a new entry remove the entry with the highest priority

In both cases, we must ensure the tree structure remains to be a heap we are going to work on a conceptual heap without

worrying about the precise implementation later I am going to show you how to implement...

Page 19: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Adding a Node to a HeapAdding a Node to a Heap

Put the new node in the next available spot.

Push the new node upward, swapping with its parent until the new node reaches an acceptable location. 19

4222127

23

45

35

42

Page 20: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Adding a Node to a HeapAdding a Node to a Heap

Put the new node in the next available spot.

Push the new node upward, swapping with its parent until the new node reaches an acceptable location. 19

4222142

23

45

35

27

Page 21: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Adding a Node to a HeapAdding a Node to a Heap

Put the new node in the next available spot.

Push the new node upward, swapping with its parent until the new node reaches an acceptable location. 19

4222135

23

45

42

27

Page 22: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Adding a Node to a HeapAdding a Node to a Heap

The parent has a key that is >= new node, or

The node reaches the root.

The process of pushing the new node upward is called reheapification upward.

19

4222135

23

45

42

27

Note: we need to easily go from child to parent as well as parent to child.

Page 23: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Removing the Top of a HeapRemoving the Top of a Heap

Move the last node onto the root.

19

4222135

23

45

42

27

Page 24: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Removing the Top of a HeapRemoving the Top of a Heap

Move the last node onto the root.

19

4222135

23

27

42

Page 25: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Removing the Top of a HeapRemoving the Top of a Heap

Move the last node onto the root.

Push the out-of-place node downward, swapping with its larger child until the new node reaches an acceptable location.

19

4222135

23

27

42

Page 26: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Removing the Top of a HeapRemoving the Top of a Heap

Move the last node onto the root.

Push the out-of-place node downward, swapping with its larger child until the new node reaches an acceptable location.

19

4222135

23

42

27

Page 27: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Removing the Top of a HeapRemoving the Top of a Heap

Move the last node onto the root.

Push the out-of-place node downward, swapping with its larger child until the new node reaches an acceptable location.

19

4222127

23

42

35

Page 28: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Removing the Top of a HeapRemoving the Top of a Heap

The children all have keys <= the out-of-place node, or

The node reaches the leaf.

The process of pushing the new node downward is called reheapification downward.

19

4222127

23

42

35

Page 29: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Priority Queues RevisitedPriority Queues Revisited

A priority queue is a container class that allows entries to be retrieved according to some specific priority levels The highest priority entry is removed first If there are several entries with equally high

priorities, then the priority queue’s implementation determines which will come out first (e.g. FIFO)

Heap is suitable for a priority queue

Page 30: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Adding a Node: same priority Adding a Node: same priority

Put the new node in the next available spot.

Push the new node upward, swapping with its parent until the new node reaches an acceptable location. 19

4222127

23

45

35

45*

Page 31: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Adding a Node: same priority Adding a Node: same priority

Put the new node in the next available spot.

Push the new node upward, swapping with its parent until the new node reaches an acceptable location. 19

4222145*

23

45

35

27

Page 32: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Adding a Node: same priority Adding a Node: same priority

Put the new node in the next available spot.

Push the new node upward, swapping with its parent until the new node reaches an acceptable location. 19

4222135

23

45

45*

27

Page 33: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Adding a Node: same priority Adding a Node: same priority

The parent has a key that is >= new node, or

The node reaches the root.

The process of pushing the new node upward is called reheapification upward.

19

4222135

23

45

45*

27

Note: Implementation determines which 45 will be in the root, and will come out first when popping.

Page 34: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Removing the Top of a HeapRemoving the Top of a Heap

The children all have keys <= the out-of-place node, or

The node reaches the leaf.

The process of pushing the new node downward is called reheapification downward.

19

4222127

23

45*

35

Note: Implementation determines which 45 will be in the root, and will come out first when popping.

Page 35: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Heap ImplementationHeap Implementation

Use binary_tree_node class node implementation is for a general binary tree but we may need to have doubly linked node

Use arrays (page 475) A heap is a complete binary tree which can be implemented more easily with an

array than with the node class and do two-way links

Page 36: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Formulas for location children and parents in an array representation Formulas for location children and parents in an array representation

Root at location [0] Parent of the node in [i] is at [(i-1)/2] Children of the node in [i] (if exist) is at

[2i+1] and [2i+2] Test:

complete tree of 10, 000 nodes parent of 4999 is at (4999-1)/2 = 2499 children of 4999 is at 9999 (V) and 10,000 (X)

Page 37: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Implementing a HeapImplementing a Heap

We will store the data from the nodes in a partially-filled array.

An array of data

2127

23

42

35

Page 38: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Implementing a HeapImplementing a Heap

Data from the root goes in the first location of the array.

An array of data

2127

23

42

35

42

Page 39: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Implementing a HeapImplementing a Heap

Data from the next row goes in the next two array locations.

An array of data

2127

23

42

35

42 35 23

Page 40: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Implementing a HeapImplementing a Heap

Data from the next row goes in the next two array locations.

An array of data

2127

23

42

35

42 35 23 27 21

Page 41: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Implementing a HeapImplementing a Heap

Data from the next row goes in the next two array locations.

An array of data

2127

23

42

35

42 35 23 27 21

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

Page 42: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Important Points about the ImplementationImportant Points about the Implementation

The links between the tree's nodes are not actually stored as pointers, or in any other way.

The only way we "know" that "the array is a tree" is from the way we manipulate the data.

An array of data

2127

23

42

35

42 35 23 27 21

Page 43: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Important Points about the ImplementationImportant Points about the Implementation

If you know the index of a node, then it is easy to figure out the indexes of that node's parent and children. Formulas are given in the book.

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

2127

23

42

35

42 35 23 27 21

Page 44: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Formulas for location children and parents in an array representation Formulas for location children and parents in an array representation

Root at location [0] Parent of the node in [i] is at [(i-1)/2] Children of the node in [i] (if exist) is at

[2i+1] and [2i+2] Test:

complete tree of 10, 000 nodes parent of 4999 is at (4999-1)/2 = 2499 children of 4999 is at 9999 (V) and 10,000 (X)

Page 45: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Wrap Up...Wrap Up...

Can you implement the add and remove with the knowledge of these formulas?

Add put the new entry in the last location Push the new node upward, swapping with its parent until the new

node reaches an acceptable location Remove

move the last node to the root Push the out-of-place node downward, swapping with its larger

child until the new node reaches an acceptable location

class heap

{

public:

....

void push(const Item& entry); // add

Item& pop(); // remove the highest

private:

Item data[CAPACITY];

size_type used;

}

Page 46: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

Wrap Up...Wrap Up...

Can you implement the add and remove with the knowledge of these formulas?

Add put the new entry in the last location Push the new node upward, swapping with its parent until the new

node reaches an acceptable location Remove

move the last node to the root Push the out-of-place node downward, swapping with its larger

child until the new node reaches an acceptable location

template <class Item>

class heap

{

public:

heap () { used = 0;}

void push(const Item& entry); // add

Item& pop(); // remove the highest

size_t parent (size_t k) const { return (k-1)/2;}

size_t l_child (size_t k) const { return 2*k+1;}

size_t r_child (size_t k) const { return 2*k+2;}

private:

Item data[CAPACITY];

size_type used;

}

Page 47: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

A heap is a complete binary tree, where the entry at each node is greater than or equal to the entries in its children.

To add an entry to a heap, place the new entry at the next available spot, and perform a reheapification upward.

To remove the biggest entry, move the last node onto the root, and perform a reheapification downward.

Summary Summary

Page 48: CSC212 Data Structure Lecture 16 Heaps and Priority Queues Instructor: George Wolberg Department of Computer Science City College of New York

THE ENDTHE END

Presentation copyright 1997 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.