/
Priority Queues and Heaps Priority Queues and Heaps

Priority Queues and Heaps - PowerPoint Presentation

phoebe-click
phoebe-click . @phoebe-click
Follow
423 views
Uploaded On 2016-06-22

Priority Queues and Heaps - PPT Presentation

Lecture 19 CS2110 Spring 2014 1 Readings and Homework Read Chapter 26 to learn about heaps Salespeople often make matrices that show all the great features of their product that the competitors product lacks Try this for a heap versus a BST First try and sell ID: 373085

insert extract heap element extract insert element heap size priority tree root heaps log bag queue list priorityqueue int

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Priority Queues and Heaps" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Priority Queues and Heaps

Lecture 19CS2110 Spring 2014

1Slide2

Readings and Homework

Read Chapter 26 to learn about heaps

Salespeople often make matrices that show all the great features of their product that the competitor’s product lacks. Try this for a heap versus a BST. First, try and sell someone on a BST: List some desirable properties of a BSTthat a heap lacks. Now be the heapsalesperson: List some good things about heaps that a BST lacks. Can you think of situations where you would favor one over the other?2With ZipUltra heaps, you’ve got it made in the shade my friend!Slide3

The Bag Interface

A Bag:

interface Bag<E> { void insert(E obj); E extract(); //extract some element boolean isEmpty();

}

Refinements of Bag: Stack

, Queue,

PriorityQueue

3

Like a Set except that a value can be in it more than once. Example: a bag of coinsSlide4

Stacks and Queues as Lists

Stack (LIFO) implemented as list

insert(), extract() from front of listQueue (FIFO) implemented as listinsert() on back of list, extract() from front of listAll Bag

operations are O(1)

55

120

19

16

first

last

4Slide5

Priority Queue

A

Bag in which data items are Comparablelesser elements (as determined by compareTo()) have higher

priority

extract()

returns the element with the highest priority = least in the

compareTo

()

ordering

break ties arbitrarily

5Slide6

Priority Queue Examples

Scheduling jobs to run on a computer

default priority = arrival timepriority can be changed by operatorScheduling events to be processed by an event handlerpriority = time of occurrenceAirline check-infirst class, business class, coachFIFO within each class6Slide7

java.util.PriorityQueue

<E>

boolean add(E e) {...} //insert an element (insert)void clear() {...} //remove all elementsE peek() {...} //return min element without removing //(null if empty)E poll() {...} //remove min element (extract)

//(null if empty) int

size() {...}

7Slide8

Priority Queues as Lists

Maintain as

unordered listinsert() put new element at front – O(1)extract() must search the list – O(n)Maintain as

ordered listinsert()

must

search the list – O(n)

extract()

get

element at front – O(1)

In either case, O(n

2

) to process n elements

Can we do better?

8Slide9

Important Special Case

Fixed number of priority levels 0,...,p – 1

FIFO within each levelExample: airline check-ininsert()– insert in appropriate queue – O(1)extract()– must find a nonempty queue – O(p)9Slide10

Heaps

A

heap is a concrete data structure that can be used to implement priority queuesGives better complexity than either ordered or unordered list implementation:insert(): O(log n)extract(): O(log n)O(n log n) to process n elements

Do not confuse with heap memory, where the Java virtual machine allocates space for objects – different usage of the word

heap

10Slide11

Heaps

Binary tree with data at each node

Satisfies the Heap Order Invariant:Size of the heap is “fixed” at

n. (But can usually double n if heap fills up)The least (highest priority) element of any

subtree

is found at the root of that

subtree

11Slide12

4

14

62119

8

35

22

55

38

10

20

Smallest element

in any

subtree

is always found at the root

of that

subtree

Note: 19, 20 < 35:

Smaller elements

can be deeper

in the tree!

12

HeapsSlide13

Examples of Heaps

Ages of people in family tree

parent is always older than children, but you can have an uncle who is younger than youSalaries of employees of a companybosses generally make more than subordinates, but a VP in one subdivision may make less than a Project Supervisor in a different subdivision13Slide14

Balanced

Heaps

These add two restrictions:Any node of depth < d – 1 has exactly 2 children, where d is the height of the treeimplies that any two maximal paths (path from a root to a leaf) are of length d or d – 1, and the tree has at least 2d nodesAll maximal paths of length d are to the left of those of length d – 114Slide15

Example of a Balanced Heap

d = 3

4146

21

19

8

35

22

55

38

10

20

15Slide16

Elements of the heap are stored in the array in order, going across each level from left to right, top to bottom

The children of the node at array index n are

at indices 2n + 1 and 2n + 2The parent of node n is node (n – 1)/2Store in an ArrayList or Vector

16Slide17

0

1

23

4

5

6

7

8

9

10

11

children of node n are found at 2n + 1 and 2n + 2

4

14

6

21

19

8

35

22

55

38

10

20

Store in an

ArrayList

or Vector

17Slide18

Store in an

ArrayList or Vector

18012

3

4

5

6

7

8

9

10

11

4

6

14

21

8

19

35

22

38

55

10

20

children of node n are found at 2n + 1 and 2n + 2

0

1

2

3

4

5

6

7

8

9

10

11

4

14

6

21

19

8

35

22

55

38

10

20Slide19

Put the new element at the end of the array

If this violates heap order because it is smaller than its parent, swap it with its parent

Continue swapping it up until it finds its rightful placeThe heap invariant is maintained!insert()

19Slide20

4

14

62119

8

35

22

55

38

10

20

20

insert()Slide21

4

14

62119

8

35

22

55

38

10

20

5

21

insert()Slide22

4

14

62119

8

35

22

55

38

10

20

5

22

insert()Slide23

4

14

62119

8

35

22

55

38

10

20

5

23

insert()Slide24

4

14

62119

8

35

22

55

38

10

20

5

24

insert()Slide25

4

14

62119

8

35

22

55

38

10

20

5

2

25

insert()Slide26

4

14

62119

8

35

22

55

38

10

20

5

2

26

insert()Slide27

4

14

62119

8

35

22

55

38

10

20

2

5

27

insert()Slide28

2

14

62119

8

35

22

55

38

10

20

4

5

28

insert()Slide29

2

14

62119

8

35

22

55

38

10

20

4

5

29

insert()Slide30

Time is O(log n), since the tree is balanced

size of tree is exponential as a function of depth

depth of tree is logarithmic as a function of size30insert()Slide31

/** An instance of a priority queue */

class

PriorityQueue<E> extends java.util.Vector<E> { /** Insert e into the priority queue */ public void insert(E e) { super.add

(e); //add to end of array

bubbleUp

(size() - 1)

;

// given on next slide

}

31

insert()Slide32

class

PriorityQueue

<E> extends java.util.Vector<E> { /** Bubble element k up the tree */ private void bubbleUp (int k) {

int p= (k-1)/2;

// p is the parent of k

//

inv

: Every element satisfies the heap property except

// element k might be smaller than its parent

while (k > 0 && get(k)

.

compareTo

(get(p)

)

<

0

) {

swap elements k and p;

k= p;

p=

(k-1)/2;

}

}

32

insert()Slide33

Remove the least element – it is at the root

This leaves a hole at the root – fill it in with the last element of the array

If this violates heap order because the root element is too big, swap it down with the smaller of its childrenContinue swapping it down until it finds its rightful placeThe heap invariant is maintained!33

extract()Slide34

4

5

62114

8

35

22

55

38

10

20

19

34

extract()Slide35

5

6

21148

35

22

55

38

10

20

19

4

35

extract()Slide36

5

6

21148

35

22

55

38

10

20

19

4

36

extract()Slide37

5

6

21148

35

22

55

38

10

20

19

4

37

extract()Slide38

5

6

21148

35

22

55

38

10

20

19

4

38

extract()Slide39

5

6

21148

35

22

55

38

10

20

19

4

39

extract()Slide40

5

6

21148

35

22

55

38

10

20

4

19

40

extract()Slide41

6

21148

35

22

55

38

10

20

4 5

19

41

extract()Slide42

6

21148

35

22

55

38

10

20

19

4 5

42

extract()Slide43

6

21

14835

22

55

38

10

20

19

4 5

43

extract()Slide44

6

21

14835

22

55

38

10

20

19

4 5

44

extract()Slide45

6

21

14835

22

55

38

10

20

19

4 5

45

extract()Slide46

6

21

14835

22

55

38

10

20

19

4 5

46

extract()Slide47

6

21

14835

22

55

38

10

19

20

4 5

47

extract()Slide48

Time is O(log n), since the tree is balanced

48

extract()Slide49

/** Remove and return the smallest element

return null if list is empty) */public E extract() { if (size() == 0) return null; E temp= get(0); // smallest value is at root set(0, get(

size() – 1)); // move last element to the root

setSize

(size() - 1)

;

// reduce size by 1

bubbleDown

(0);

return

temp

;

}

49

extract()Slide50

/** Bubble the root down to its heap position.

Pre: tree is a heap except: root may be >than a child */private void bubbleDown() { int k= 0; // Set c to smaller of k’s children int c= 2*k + 2;

// k’s right child if (c

> size()-1 || get(

c-1

).

compareTo

(get(c)) <

0) c= c-1;

//

inv

tree is a heap except:

element k may

be

> than

a

child.

// Also. k’s smallest child is element c

while (c < size() && get(k).

compareTo

(get(c) > 0) {

Swap elements at k and c;

k= c;

c= 2*k + 2; // k’s right child

if (

c > size()-1 || get(c-1).compareTo(get(c)) < 0) c= c-1

; }

}50Slide51

HeapSort

Given a

Comparable[] array of length n,Put all n elements into a heap – O(n log n) Repeatedly get the min – O(n log n)public static void heapSort(Comparable[] b) {

PriorityQueue<Comparable> pq=

new

PriorityQueue

<Comparable

>(b);

for

(

int

i

= 0;

i

<

b

.length

;

i

++) {

b

[i

] = pq.extract();

}

}

51

One can do the two stages in the array itself, in place, so algorithm takes O(1) space.Slide52

PQ Application: Simulation

Example: Probabilistic model of bank-customer arrival times and transaction times, how many tellers are needed?

Assume we have a way to generate random inter-arrival timesAssume we have a way to generate transaction timesCan simulate the bank to get some idea of how long customers must waitTime-Driven SimulationCheck at each tick to see if any event occursEvent-Driven SimulationAdvance clock to next event, skipping intervening ticks

This uses a PQ!52