The Algorithm Design Manual Second Edition


Stop and Think: Where in the Heap?



Download 5,51 Mb.
Pdf ko'rish
bet106/488
Sana31.12.2021
Hajmi5,51 Mb.
#273936
1   ...   102   103   104   105   106   107   108   109   ...   488
Bog'liq
2008 Book TheAlgorithmDesignManual

Stop and Think: Where in the Heap?

Problem: Given an array-based heap on elements and a real number x, efficiently

determine whether the kth smallest element in the heap is greater than or equal

to x. Your algorithm should be O(k) in the worst-case, independent of the size of

the heap. Hint: you do not have to find the kth smallest element; you need only

determine its relationship to x.

Solution: There are at least two different ideas that lead to correct but inefficient

algorithms for this problem:

1. Call extract-min times, and test whether all of these are less than x. This

explicitly sorts the first elements and so gives us more information than

the desired answer, but it takes O(log n) time to do so.

2. The kth smallest element cannot be deeper than the kth level of the heap,

since the path from it to the root must go through elements of decreasing

value. Thus we can look at all the elements on the first levels of the heap,

and count how many of them are less than x, stopping when we either find k

of them or run out of elements. This is correct, but takes O(min(n, 2



k

)) time,


since the top elements have 2

k

elements.

An O(k) solution can look at only elements smaller than x, plus at most O(k)

elements greater than x. Consider the following recursive procedure, called at the

root with = 1 with count k:



4 . 3

H E A P S O R T : F A S T S O R T I N G V I A D A T A S T R U C T U R E S



117

int heap_compare(priority_queue *q, int i, int count, int x)

{

if (q->q[i] < x) {



count = heap_compare(q, pq_young_child(i), count-1, x);

count = heap_compare(q, pq_young_child(i)+1, count, x);

}

return(count);



}

If the root of the min-heap is



≥ x, then no elements in the heap can be less than

x, as by definition the root must be the smallest element. This procedure searches

the children of all nodes of weight smaller than until either (a) we have found



of them, when it returns 0, or (b) they are exhausted, when it returns a value

greater than zero. Thus it will find enough small elements if they exist.

But how long does it take? The only nodes whose children we look at are those

< x, and at most of these in total. Each have at most visited two children, so we

visit at most 3nodes, for a total time of O(k).




Download 5,51 Mb.

Do'stlaringiz bilan baham:
1   ...   102   103   104   105   106   107   108   109   ...   488




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish